mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-16 06:36:48 +03:00
26 lines
619 B
JavaScript
26 lines
619 B
JavaScript
|
import { createStore } from 'redux';
|
||
|
import devTools from 'remote-redux-devtools';
|
||
|
import rootReducer from '../reducers';
|
||
|
import * as actionCreators from '../actions/todos';
|
||
|
|
||
|
export default function configureStore(initialState) {
|
||
|
const store = createStore(
|
||
|
rootReducer,
|
||
|
initialState,
|
||
|
devTools({
|
||
|
realtime: true,
|
||
|
actionCreators,
|
||
|
})
|
||
|
);
|
||
|
|
||
|
if (module.hot) {
|
||
|
// Enable Webpack hot module replacement for reducers
|
||
|
module.hot.accept('../reducers', () => {
|
||
|
const nextReducer = require('../reducers').default;
|
||
|
store.replaceReducer(nextReducer);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
return store;
|
||
|
}
|