WebSocket connection to ‘ws://localhost:8081/ws‘ failed: Invalid frame header
问题描述在启动vue项目的时候,控制台每隔几秒就会报错WebSocket connection to 'ws://localhost:8081/ws' failed: Invalid frame header解决方案:项目解决方式是修改代理中ws:true改为falsemodule.exports = {publicPath: './',lintOnSave: false, // 关闭语法检查de
·
问题描述
在启动vue项目的时候,控制台每隔几秒就会报错
WebSocket connection to 'ws://localhost:8081/ws' failed: Invalid frame header
解决方案:
项目解决方式是修改代理中ws:true改为false
module.exports = {
publicPath: './',
lintOnSave: false, // 关闭语法检查
devServer: {
proxy: {
'/': {
target: 'http://localhost:3000/', // 本地后端地址
changeOrigin: true, //允许跨域
ws: false
}
}
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)