vue-cli3新建的项目hotOnly: true报错,注掉后又不能热更新
vue create创建项目,自己选的配置。然后运行报错如下:
但是把devServer的hotOnly给注掉后,项目不报错可以正常启动了,但是热更新是无效的,得手动刷新,vue.config.js配置如下:
module.exports = {
publicPath: '/datav-project/',
assetsDir: 'static',
devServer: {
host: "0.0.0.0",
port: 9527, // 端口号
https: false, // https:{type:Boolean}
open: true,
hotOnly: true, // 热更新
proxy: { //配置自动启动浏览器
'/api': {
target: process.env.VUE_APP_BASE_API,
changeOrigin: true, //允许跨域,如果接口跨域,需要进行这个参数配置
secure: false, //如果是https接口,需要配置这个参数
ws: false
}
}
},
lintOnSave: false,
configureWebpack: (config) => {
config.performance = {
hints: false
}
config.externals = {
'vue': 'Vue',
'vue-router': 'VueRouter',
'axios': 'axios',
'echarts': 'echarts',
'js-cookie': 'Cookies'
}
},
chainWebpack (config) {
config.resolve.symlinks(true); // 修复热更新失效
config.plugins.delete('preload') // TODO: need test
config.plugins.delete('prefetch') // TODO: need test
config.resolve.alias.set('src', resolve('src'))
config.plugin('compressionPlugin')
.use(new CompressionPlugin({
test: /\.js$|\.html$|.\css/, // 匹配文件名
threshold: 1024, // 对超过10k的数据压缩
deleteOriginalAssets: false // 不删除源文件
}))
}
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论