You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Enable hot module reloading in development mode. */if(process.env.NODE_ENV==='development'){if(module.hot){// Handle updates to the components.module.hot.accept('./component',()=>{console.log('Updated components');renderRoot();});// Handle updates to the reducers.module.hot.accept('./reducer',()=>{console.log('Updated reducers');letrootReducer=require('./reducer').default;store.replaceReducer(rootReducer);});// Handle updates to the epics.module.hot.accept('./epic',()=>{console.log('Updated epics');letrootEpic=require('./epic').default;epicMiddleware.replaceEpic(rootEpic);});}}
I also tried react-hot-loaderv3 already but its not good enough yet.
I will definitely look into Wright - haven't heard about it before, but looks extremely interesting.
Very cool project, thank you!
Any plans for hot module reloading (using webpack)? Or maybe: https://github.com/porsager/Wright
The text was updated successfully, but these errors were encountered: