When building my Vue development server (yarn serve
) each time I run it the port my project is being served on is incremented by 1 (3000 to 3001) each time I run yarn serve
I am also making sure to exit the previous process...
Is there any known reason this is happening? I've have tried searching for this but have seen nothing similar to this.
My package.json scripts block:
"scripts": {
"serve": "vue-cli-service serve --port 3000",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
}