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

Why am I getting ERR_CONNECTION_TIMED_OUT in Vue.js?(为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT?)

本文介绍了为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 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

这篇关于为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT?

基础教程推荐