v1.7.0
You can now load your reducers and AppContainer by placing them in the following location:
store/reducers.js Export a function like this:
export default asyncReducers => combineReducers({
router,
...initialReducers,
...asyncReducers,
})And the AppContainer
containers/AppContainer.js
To enable this add this to your config:
{
loadFile: {
reducers : true,
AppContainer: true,
}
}