我使用webpack开发了我的项目并成功运行它。我在开发环境中的命令行中运行node build/webpack.dev.js --hot
,它在linux os中运行良好。但是当我在windows os中使用sublime text3修改我的源代码时,webpack没有重新编译代码,nethier确实让chrome浏览器刷新了它的页面。但是,当我使用vim
commond修改linux os中的代码时。它运作良好。我无法找到解决这个问题的方法。以下是webpack.dev.js
中的代码:
new WebpackDevServer(webpack(config), {
hot: hot,
inline: true,
compress: true,
quiet: true,
stats: {
chunks: false,
children: false,
colors: true
},
historyApiFallback: true,
}).listen(PORT, HOST, function() {
console.log(localPublicPath);
});
有谁可以帮助我?