为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT?

2022-01-19 00:00:00 frontend vue.js vue-cli-3

使用 vue cli 3 创建新项目后,出现此错误:

After creating a new project with vue cli 3 I get this error:

GET http://192.168.1.13:8080/sockjs-node/info?t=1538257166715 net::ERR_CONNECTION_TIMED_OUT sockjs.js?9be2:1605

GET http://192.168.1.13:8080/sockjs-node/info?t=1538257166715 net::ERR_CONNECTION_TIMED_OUT sockjs.js?9be2:1605

操作系统:Windows 10

Operation system: Windows 10

推荐答案

使用以下代码创建 vue.config.js:

Create vue.config.js with the following code:

module.exports = {
devServer: {

    host: 'localhost'
    }
};

https://cli.vuejs.org/config/#devserver

相关文章