Changing the Port of the Dev Server
You can change the default port 8080 to another port (e.g. 3010). You can do this by changing the package.json file.
Modify the "start" command in the package.json file:
// package.json
...
"scripts": {
...
"start": "webpack-dev-server --port 3010"
}