8080 is used by a lot of services. I need a way to run the dev-tools build on a port other than 8080.
Unsure
Hey @FEA5T. Devtools use webpack-dev-server, so it's as simple as passing another parameter:
npm run dev -- --port 4000
More info here: https://webpack.js.org/configuration/dev-server/#devserver-port
If you think this information might be useful for others too, don't hesitate to create a PR with updated documentation :)
@michalsnik Thanks, I noticed that it was running webpack-dev-server however when I did some Ctrl-F'ing I noticed :8080 hardcoded into a lot of tests and other places so I assumed that there had to be something more to it.
Thanks!
Most helpful comment
Hey @FEA5T. Devtools use webpack-dev-server, so it's as simple as passing another parameter:
More info here: https://webpack.js.org/configuration/dev-server/#devserver-port
If you think this information might be useful for others too, don't hesitate to create a PR with updated documentation :)