14 lines
565 B
JavaScript
14 lines
565 B
JavaScript
|
import { createStore, applyMiddleware, compose } from 'redux';
|
||
|
import thunk from 'redux-thunk';
|
||
|
import appReducer from '../reducers';
|
||
|
import loadingBarMiddleware from '../middleware/loading_bar';
|
||
|
import errorsMiddleware from '../middleware/errors';
|
||
|
|
||
|
export default function configureStore() {
|
||
|
return createStore(appReducer, compose(applyMiddleware(
|
||
|
thunk,
|
||
|
loadingBarMiddleware({ promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAIL'] }),
|
||
|
errorsMiddleware(),
|
||
|
), window.__REDUX_DEVTOOLS_EXTENSION__ ? window.__REDUX_DEVTOOLS_EXTENSION__() : f => f));
|
||
|
};
|