This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-08-31 07:15:12 -07:00
|
|
|
import { createStore, applyMiddleware, compose } from 'redux';
|
2016-09-19 14:25:59 -07:00
|
|
|
import thunk from 'redux-thunk';
|
|
|
|
import appReducer from '../reducers';
|
|
|
|
import { loadingBarMiddleware } from 'react-redux-loading-bar';
|
2016-08-24 08:56:44 -07:00
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
export default function configureStore(initialState) {
|
2016-09-19 14:25:59 -07:00
|
|
|
return createStore(appReducer, initialState, compose(applyMiddleware(thunk, loadingBarMiddleware({
|
|
|
|
promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAIL'],
|
|
|
|
})), window.devToolsExtension ? window.devToolsExtension() : f => f));
|
|
|
|
};
|