在用vue-cli 3创建的vue项目中,我的热装工作正常,然后突然停止了。
在控制台中,当我保存*.vue
文件时,我看到:
[WDS] App updated. Recompiling...
[WDS] App hot update...
就是这样,它在那里停止,没有在浏览器中重新加载。 我已经准备尝试重新安装我的整个节点模块,我的webpack-dev-server, 尝试添加
watchOptions: {
poll: true
}
到我的vue.config.js
文件,但没有任何效果。我的配置文件非常简单明了:
module.exports = {
devServer: {
port: 8080,
clientLogLevel: 'info'
},
pages: {
app: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html'
}
},
css: {
loaderOptions: {
sass: {
data: `
@import "@/assets/styles/variables.scss";
`
}
}
}
}
你知道是什么原因造成的吗?