diff --git a/examples/hot-reload/webpack.config.js b/examples/hot-reload/webpack.config.js index f72b212c..aa2a30d8 100644 --- a/examples/hot-reload/webpack.config.js +++ b/examples/hot-reload/webpack.config.js @@ -18,7 +18,9 @@ module.exports = { plugins: [ new webpack.HotModuleReplacementPlugin(), - new webpack.NoErrorsPlugin(), // don't reload if there is an error + // don't reload if there is an error + // renamed to `NoEmitOnErrorsPlugin` - https://github.com/webpack/docs/issues/96 + new webpack.NoErrorsPlugin(), new BundleTracker({filename: './webpack-stats.json'}), ],