第一步:安装 HMR 中间件:
npm install –save-dev webpack-hot-middleware
第二步:webpack 配置中引入 webpack 对象
const webpack = require('webpack’);
第三步:增加 devServer 配置项:
hot: true
第四步:增加热模块替换插件:
new webpack.HotModuleReplacementPlugin()
注意:
1、ExtractTextPlugin 插件可能会导致 HMR 无效。
另外,还可以通过使用 web-dev-server —hotOnly 参数来启用 HMR。
参考官网链接:
https://webpack.js.org/guides…
https://github.com/webpack-co…
React、Vue、Angular 相关技术,请参考以下内容:
- React Hot Loader: Tweak react components in real time.
- Vue Loader: This loader supports HMR for vue components out of the box.
- Elm Hot Loader: Supports HMR for the Elm programming language.
- Angular HMR: No loader necessary! A simple change to your main NgModule file is all that’s required to have full control over the HMR APIs.