mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-24 10:33:58 +03:00
26 lines
611 B
JavaScript
26 lines
611 B
JavaScript
|
import { createStore, compose } from 'redux';
|
||
|
import { persistState } from 'redux-devtools';
|
||
|
import rootReducer from '../reducers';
|
||
|
import DevTools from '../containers/DevTools';
|
||
|
|
||
|
const finalCreateStore = compose(
|
||
|
DevTools.instrument(),
|
||
|
persistState(
|
||
|
window.location.href.match(
|
||
|
/[?&]debug_session=([^&]+)\b/
|
||
|
)
|
||
|
)
|
||
|
)(createStore);
|
||
|
|
||
|
export default function configureStore(initialState) {
|
||
|
const store = finalCreateStore(rootReducer, initialState);
|
||
|
|
||
|
if (module.hot) {
|
||
|
module.hot.accept('../reducers', () =>
|
||
|
store.replaceReducer(require('../reducers'))
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return store;
|
||
|
}
|