Skip to content

Commit

Permalink
Fixed Webpack dev server not working on Windows (#537)
Browse files Browse the repository at this point in the history
Co-authored-by: Vishal <[email protected]>
  • Loading branch information
vishalshrm539 and Vishal authored Nov 18, 2024
1 parent c294060 commit 38f77b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"build:dev:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:dev",
"build:prod": "npm run _internal-check-node-version && run-p -l fix _internal-build-prod-only",
"build:prod:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:prod",
"start-dev": "webpack serve --mode='development'",
"start-dev-https": "webpack serve --server-type https --mode='development'",
"start-dev": "webpack serve --mode=development",
"start-dev-https": "webpack serve --server-type https --mode=development",
"start-prod": "http-server ./dist --port 3502 --gzip --brotli --cors --proxy http://localhost:3502?",
"start-prod-https": "http-server ./dist --port 3502 --gzip --brotli --cors --ssl --cert private.pem --key private.key --proxy https://localhost:3502?",
"clean": "echo \"cleaning...\" && npx shx --yes rm -rf ./dist/** ./node_modules",
Expand Down

0 comments on commit 38f77b0

Please sign in to comment.