vue端口不固定,指定端口无效

2019-08-20 16:57发布

问题:

vue指定过端口,每次启动端口都会变,index.js中指定过端口

host: 'localhost', // can be overwritten by process.env.HOST
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined

启动后端口就会变,不固定
http://localhost:32907
http://localhost:27916
·····

回答1:

portfinder新发布的版本异常
解决方法
https://github.com/vuejs/vue-cli/issues/4452
项目目录执行下面命令

npm install portfinder@1.0.21


回答2:

什么情况,我也是,哪里的问题?



回答3:

本机的8080端口是不是被别的程序占用了,换个端口号再启动试试



标签: vue 前端