在构建我的 Vue 开发服务器 ( yarn serve
) 时,每次运行它时,我的项目所服务的端口每次运行时都会增加 1(3000 到 3001),yarn serve
我还要确保退出前一个进程......
发生这种情况有什么已知的原因吗?我试过搜索这个,但没有看到类似的东西。
我的 package.json 脚本块:
"scripts": {
"serve": "vue-cli-service serve --port 3000",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
}