Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added extra parameter to npm start script to avoid webpack-dev-server…
… ipv6 problem When running the project as is using `npm start` no page was served on http://localhost:8080/ on my machine. This is due to webpack-dev-server is using IPV4 and newer laptops and browsers are using IPV6. The issue is fixed here: webpack/webpack-dev-server#676 Adding `--host ::` will ensure the project runs and serves the page correctly on newer browsers.
- Loading branch information