1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

ui: Start dev server with default host, not 0.0.0.0

0.0.0.0 does not work well with WSL2 on Windows 10
This commit is contained in:
James Hillyerd
2020-09-06 16:38:33 -07:00
parent ce5bfddaa5
commit 6598b09114

View File

@@ -6,7 +6,7 @@
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"dev": "webpack-dev-server --mode development --host 0.0.0.0 --port 3000 --hot",
"dev": "webpack-dev-server --mode development --port 3000 --hot",
"errors": "webpack --mode development --display-error-details"
},
"dependencies": {},