mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-23 01:56:52 +03:00
6782f4ae41
* Move extension * prettier
29 lines
816 B
JavaScript
29 lines
816 B
JavaScript
import { createStore, applyMiddleware, compose } from 'redux';
|
|
import { composeWithDevTools } from 'redux-devtools-extension';
|
|
import thunk from 'redux-thunk';
|
|
import invariant from 'redux-immutable-state-invariant';
|
|
import reducer from '../reducers';
|
|
import * as actionCreators from '../actions/counter';
|
|
|
|
export default function configureStore(preloadedState) {
|
|
const composeEnhancers = composeWithDevTools({
|
|
actionCreators,
|
|
trace: true,
|
|
traceLimit: 25,
|
|
});
|
|
const store = createStore(
|
|
reducer,
|
|
preloadedState,
|
|
composeEnhancers(applyMiddleware(invariant(), thunk))
|
|
);
|
|
|
|
if (module.hot) {
|
|
// Enable Webpack hot module replacement for reducers
|
|
module.hot.accept('../reducers', () => {
|
|
store.replaceReducer(require('../reducers').default);
|
|
});
|
|
}
|
|
|
|
return store;
|
|
}
|