Make Redux reducers and other non-components hot loadable
问题 I'm having a tough time getting my reducers to be hot swapable. I'm using Webpack and react-transform-hmr . With this, all of the CSS and the components are hot loaded when I save, but when I try and work on another type of type - most notably the reducers - it would tell me to do a full refresh. I figured out that this is because I need to explicitly re-load the reducers in and accept the event. Which I'm doing with this code in my store.js : if(module.hot) { module.hot.accept('./reducers/',