-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
webpack-dev-server not updating my bundle #324
Comments
@Jakobud Try adding it: ...
plugins: [
new OldWatchingPlugin()
]
... |
@Jakobud please take a look at webpack/webpack#675 |
It seems an inotify limit might interfere on linux. Try something like the following:
|
This is a problem with vagrant and NFS (which I have had very often), but was solved a while ago. The filesystem does not get notified of changes over NFS. Add |
I'm new to webpack so maybe I'm misunderstanding something. I am developing on Windows in a Vagrant Linux guest box. I have the following
webpack.config.js
I do the following:
I can now access the server at
localhost:8080
successfully. But when I update myindex.js
, the page doesn't update, the webpack-dev-server doesn't appear to create a new bundle, etc. Nothing changes.What am I missing here?
The text was updated successfully, but these errors were encountered: