Aug 28, 2017 · 1 min read
Hi Eduardo Silva,
Hot Module Reloading is only relevant to your front-end, independent of what you’ve used as your backend.
Since we are already using Webpack and Babel with ES6 support, it is straightforward to add the hot module reloading. All you ned to do is:
- enable Hot Module Replacement, which is a Webpack feature;
- configure Webpack to use React Hot Loader for JS or JSX files.
The React Hot Loader 3 has instructions for how you would add this to your project: https://github.com/gaearon/react-hot-loader/tree/master/docs#migration-to-30
Cheers,
Angela
