运行报错:sockjs.js?9be2:1606 GET http://localhost:7777/sockjs-node/info?t=1609136473067 net::ERR_CONNECT
创建的vue项目运行报错
在配置了vue.config.js文件输入以下代码后,
module.exports = {
devServer: {
port: 8081,
public: 'localhost:7777',
host: 'localhost'
}
}
报错:sockjs.js?9be2:1606 GET http://localhost:7777/sockjs-node/info?t=1609136473067 net::ERR_CONNECT
修改vue.config.js
devServer: {
port: 8080,
host: 'localhost'
}
无报错了。
还没有评论,来说两句吧...