I\'ve set up a basic react application with webpack but I couldn\'t get the webpack-dev-server running properly.
webpack-dev-server
I\'ve installed webpack-dev-server>
webpack-dev-server>
In my case I had to check where the webpack is serving the file.
You can see it: http://localhost:8080/webpack-dev-server
http://localhost:8080/webpack-dev-server
Then I could see my bundle.js path > http://localhost:8080/dist/bundle.js
After that I used that /dist/bundle.js in my index.html
/dist/bundle.js
Now it refreshes any file changes.