You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
576 B
18 lines
576 B
const { createStore, applyMiddleware } = require('redux')
|
|
const { default: thunkMiddleware } = require('redux-thunk')
|
|
const { composeWithDevTools } = require('remote-redux-devtools')
|
|
const rootReducer = require('../ducks')
|
|
|
|
module.exports = function configureStore (initialState) {
|
|
const composeEnhancers = composeWithDevTools({
|
|
name: 'MetaMask',
|
|
hostname: 'localhost',
|
|
port: 8000,
|
|
realtime: Boolean(process.env.METAMASK_DEBUG),
|
|
})
|
|
return createStore(rootReducer, initialState, composeEnhancers(
|
|
applyMiddleware(
|
|
thunkMiddleware,
|
|
),
|
|
))
|
|
}
|
|
|