Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dgp1130/webpack-windows-docker-watch-repro
- Owner: dgp1130
- Created: 2021-12-03T02:33:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-03T02:34:15.000Z (almost 3 years ago)
- Last Synced: 2024-10-06T02:01:47.738Z (about 1 month ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.