React Hot Reload Issue in Ubuntu.
Added this to store.js file
if (module.hot) {
// Enable Webpack hot module replacement for reducers
module.hot.accept('../reducers', () => {
const nextRootReducer = require('../reducers/index');
store.replaceReducer(nextRootReducer);
});
}
Commands
>
sysctl -a | grep inotify (
Output might be ----> user.max_inotify_watches = 524288
)
> sudo gedit /etc/sysctl.conf (append "fs.inotify.max_user_watches=524288")
> sudo sysctl -p /etc/sysctl.conf (to apply changes)
Comments
Post a Comment