Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dgp1130/webpack-windows-docker-watch-repro


https://github.com/dgp1130/webpack-windows-docker-watch-repro

Last synced: 13 days ago
JSON representation

Awesome Lists containing this project

README

        

# Webpack Docker Windows watch reproduction

To reproduce, on a **Windows 10** machine:

1. Run: `docker-compose up --build`.
1. View the app at http://localhost:8080/.
1. Edit `src/index.js` to change the message and save the file.
1. Observe the page does not update and Webpack does not rebuild.

With polling, the issue is fixed:

1. Uncomment `poll: 500` in `webpack.config.js`.
1. Run: `docker-compose up --build`.
1. Edit `src/index.js` to change the message and save the file.
1. Observe the page reload and display the new message.