Vue.js CLI 无法更改默认主机
Vue.js CLI can't change default HOST
尝试设置新环境变量时无法更改默认主机,如下所示:
SET HOST=custom.localhost
SET PORT=8081
npm run dev
错误:activeevents.js:182 throw er; // Unhandled 'error' event
如果我 运行 没有设置新的环境变量,即使用默认主机 localhost
和默认端口 8080
,npm run dev
不会捕获任何错误并且应用程序工作起来很有魅力。
I haven't any other HOST like 'custom.localhost' running on my system.
The problem isn't with PORT because I can change it to any other without any problem.
Vue.js version: 2.5.2
Vue.js CLI version: 2.9.1
您之前只需要在您的系统上创建一个自定义的虚拟主机,因为如果还没有,CLI 将捕获一个类似上面的错误和另一个错误:Error: getaddrinfo ENOTFOUND custom.localhost
所以,在这样做之后应用程序就可以运行了!
尝试设置新环境变量时无法更改默认主机,如下所示:
SET HOST=custom.localhost
SET PORT=8081
npm run dev
错误:activeevents.js:182 throw er; // Unhandled 'error' event
如果我 运行 没有设置新的环境变量,即使用默认主机 localhost
和默认端口 8080
,npm run dev
不会捕获任何错误并且应用程序工作起来很有魅力。
I haven't any other HOST like 'custom.localhost' running on my system.
The problem isn't with PORT because I can change it to any other without any problem.
Vue.js version: 2.5.2
Vue.js CLI version: 2.9.1
您之前只需要在您的系统上创建一个自定义的虚拟主机,因为如果还没有,CLI 将捕获一个类似上面的错误和另一个错误:Error: getaddrinfo ENOTFOUND custom.localhost
所以,在这样做之后应用程序就可以运行了!