@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stanlemon/webdev",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "My typical web development setup, but without all the copy and paste.",
5
5
  "keywords": [
6
6
  "webpack",
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.WEBDEV_HTML ?? "";
24
+ const WEBDEV_PROXY = process.env.WEBDEV_PROXY ?? "";
25
25
  const NODE_ENV = process.env.NODE_ENV ?? "development";
26
26
 
27
27
  const proxy = {};