hmr-filter-webpack-plugin
v1.0.0
Published
Disable Hot Module Replacement for certain chunks.
Downloads
400
Maintainers
Readme
hmr-filter-webpack-plugin
Disable Hot Module Replacement for certain chunks.
Install
npm i -D hmr-filter-webpack-plugin
# or
yarn add -D hmr-filter-webpack-plugin
Usage
// webpack.config.js
const {
HotModuleReplacementFilterPlugin
} = require('hmr-filter-webpack-plugin');
// ...
{
plugins: [
// Disable HMR for `worker-loader` and `service-worker-loader`
new HotModuleReplacementFilterPlugin((compilation) => {
const {
name
} = compilation.compiler;
return name && name.includes('worker');
}),
new webpack.HotModuleReplacementPlugin()
]
}