mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-24 10:33:58 +03:00
922985f9ea
* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
30 lines
849 B
JavaScript
30 lines
849 B
JavaScript
import { createStore, applyMiddleware, compose } from 'redux';
|
|
import thunk from 'redux-thunk';
|
|
import invariant from 'redux-immutable-state-invariant';
|
|
import { composeWithDevTools } from 'remote-redux-devtools';
|
|
import reducer from '../reducers';
|
|
import * as actionCreators from '../actions/counter';
|
|
|
|
export default function configureStore(initialState) {
|
|
const composeEnhancers = composeWithDevTools({
|
|
realtime: true,
|
|
actionCreators,
|
|
trace: true,
|
|
});
|
|
const store = createStore(
|
|
reducer,
|
|
initialState,
|
|
composeEnhancers(applyMiddleware(invariant(), thunk)),
|
|
);
|
|
|
|
if (module.hot) {
|
|
// Enable Webpack hot module replacement for reducers
|
|
module.hot.accept('../reducers', () => {
|
|
const nextReducer = require('../reducers').default;
|
|
store.replaceReducer(nextReducer);
|
|
});
|
|
}
|
|
|
|
return store;
|
|
}
|