-
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
Hot Module Reload not working after upgrade to webpacker 3.0 #724
Comments
@krisrang Oh yes, seems like something we introduced with To fix now: // config/webpack/development.js
const environment = require('./environment')
const config = environment.toWebpackConfig()
config.devServer.watchContentBase = false
module.exports = config |
Merged the fix but Keeping this open for reference until we make a new tiny release |
rails/webpacker#724 Maybe i’m just being noob
Released 3.0.1 |
Still seeing this, using webpack 3.0.1 and webpack 3.4.1 Tried @gauravtiwari fix, but no success either. Any ideas? |
I wrote a detailed explanation on how to use hot module reloading with Webpacker, that could help you. |
Hot Module Reload does not seem to be working correctly after upgrading to webpacker 3.0.
The page is receiving the HMR update and page content is changing but then a full refresh is also done.
The text was updated successfully, but these errors were encountered: