Skip to content

Commit 38f77b0

Browse files
vishalshrm539Vishal
andauthored
Fixed Webpack dev server not working on Windows (#537)
Co-authored-by: Vishal <[email protected]>
1 parent c294060 commit 38f77b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"build:dev:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:dev",
99
"build:prod": "npm run _internal-check-node-version && run-p -l fix _internal-build-prod-only",
1010
"build:prod:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:prod",
11-
"start-dev": "webpack serve --mode='development'",
12-
"start-dev-https": "webpack serve --server-type https --mode='development'",
11+
"start-dev": "webpack serve --mode=development",
12+
"start-dev-https": "webpack serve --server-type https --mode=development",
1313
"start-prod": "http-server ./dist --port 3502 --gzip --brotli --cors --proxy http://localhost:3502?",
1414
"start-prod-https": "http-server ./dist --port 3502 --gzip --brotli --cors --ssl --cert private.pem --key private.key --proxy https://localhost:3502?",
1515
"clean": "echo \"cleaning...\" && npx shx --yes rm -rf ./dist/** ./node_modules",

0 commit comments

Comments
 (0)