Hot reload was broken on presentation/index.js edition, and I had this warning :
[HMR] The following modules couldn't be hot updated: (Full reload needed)
This is usually because the modules which have changed (and their parents)
do not know how to hot reload themselves.
See http://webpack.github.io/docs/hot-module-replacement-with-webpack.html
for more details.
[HMR] - ./presentation/index.js
The add of react-transform-hmr plugin to babel-loader configuration fix the issue.
Hot reload was broken on
presentation/index.js
edition, and I had this warning :The add of
react-transform-hmr
plugin to babel-loader configuration fix the issue.