@stanlemon/webdev 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/webpack.config.js +1 -1
package/package.json
CHANGED
package/webpack.config.js
CHANGED
|
@@ -21,7 +21,7 @@ const WEBDEV_ENTRY = process.env.WEBDEV_ENTRY ?? "./src/index.tsx";
|
|
|
21
21
|
const WEBDEV_HTML = process.env.WEBDEV_HTML ?? "./index.html";
|
|
22
22
|
// Proxy path's can be designated as path@host, separated by semi-colons
|
|
23
23
|
// For example /api@http://localhost:3000;/auth@http://localhost:4000
|
|
24
|
-
const WEBDEV_PROXY = process.env.
|
|
24
|
+
const WEBDEV_PROXY = process.env.WEBDEV_PROXY ?? "";
|
|
25
25
|
const NODE_ENV = process.env.NODE_ENV ?? "development";
|
|
26
26
|
|
|
27
27
|
const proxy = {};
|