1. 程式人生 > 其它 >執行報錯:sockjs.js?9be2:1606 GET http://localhost:7777/sockjs-node/info?t=1609136473067 net::ERR_CONNECT

執行報錯:sockjs.js?9be2:1606 GET http://localhost:7777/sockjs-node/info?t=1609136473067 net::ERR_CONNECT

技術標籤:vue

建立的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' }

無報錯了。