Whether to enable Redux DevTools integration. Defaults to true
.
Additional configuration can be done by passing Redux DevTools options
The store enhancers to apply. See Redux's createStore()
.
All enhancers will be included before the DevTools Extension enhancer.
If you need to customize the order of enhancers, supply a callback
function that will receive the original array (ie, [applyMiddleware]
),
and should return a new array (such as [applyMiddleware, offline]
).
If you only need to add middleware, you can use the middleware
parameter instead.
An array of Redux middleware to install. If not supplied, defaults to
the set of middleware returned by getDefaultMiddleware()
.
The initial state, same as Redux's createStore.
You may optionally specify it to hydrate the state
from the server in universal apps, or to restore a previously serialized
user session. If you use combineReducers()
to produce the root reducer
function (either directly or indirectly by passing an object as reducer
),
this must be an object with the same shape as the reducer map keys.
A single reducer function that will be used as the root reducer, or an
object of slice reducers that will be passed to combineReducers()
.
Generated using TypeDoc
Options for
configureStore()
.