mastodon/app/javascript/mastodon/store/configureStore.js

17 lines
519 B
JavaScript
Raw Normal View History

import { configureStore } from '@reduxjs/toolkit';
2017-01-09 12:37:15 +01:00
import thunk from 'redux-thunk';
import appReducer from '../reducers';
2017-01-16 13:27:58 +01:00
import loadingBarMiddleware from '../middleware/loading_bar';
2017-01-09 12:37:15 +01:00
import errorsMiddleware from '../middleware/errors';
import soundsMiddleware from '../middleware/sounds';
export const store = configureStore({
reducer: appReducer,
middleware: [
thunk,
loadingBarMiddleware({ promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAIL'] }),
errorsMiddleware(),
soundsMiddleware(),
],
});