hot为true了,还是刷新整个页面 也push了 new webpack.HotModuleReplacementPlugin(), new webpack.NoEmitOnErrorsPlugin()
检查一下isDev 是否为true
我之前也遇到过这个问题,但是后来解决了,仅仅是添加了hot:true。
if(isDev){
config.devtool = '#cheap-module-eval-source-map'
config.devServer = {
port: 8000,
host: '0.0.0.0',
overlay: {
errors: true
},
open: true,
hot: true
}
config.plugins.push(
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin()
)
}