Keep redux state across hot module reloads
This commit is contained in:
parent
2acd78473d
commit
727a6d3975
|
@ -15,10 +15,10 @@ import notificationsSaga from './sagas/notifications';
|
|||
import 'assets/styles/etherwallet-master.less';
|
||||
|
||||
const sagaMiddleware = createSagaMiddleware();
|
||||
let store;
|
||||
|
||||
const configureStore = () => {
|
||||
let sagaApplied = applyMiddleware(sagaMiddleware);
|
||||
let store;
|
||||
let middleware;
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
|
@ -54,5 +54,7 @@ const renderRoot = Root => {
|
|||
renderRoot(Root);
|
||||
|
||||
if (module.hot) {
|
||||
module.hot.accept();
|
||||
module.hot.accept('reducers/index', () =>
|
||||
store.replaceReducer(require('reducers/index').default)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue