mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 21:56:55 +03:00
476e37a875
* Add redux-slider-monitor * Fix example configuration of redux-slider-monitor * Fix lint errors * CI: Run build:all before lint
24 lines
589 B
JavaScript
24 lines
589 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(rootReducer));
|
|
}
|
|
|
|
return store;
|
|
}
|