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
541 B
18 lines
541 B
import { createStore, applyMiddleware } from 'redux'
|
|
import thunkMiddleware from 'redux-thunk'
|
|
import { composeWithDevTools } from 'remote-redux-devtools'
|
|
import rootReducer from '../ducks'
|
|
|
|
export default 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,
|
|
),
|
|
))
|
|
}
|
|
|