0👍
I just had this same problem and it was because the vue server was already running unknowingly to me so when I ran vue-cli-service serve
it wasn’t updating the env variables that appeared in my browser. To fix this I found the process running on port 8080, the default port for vue and killed it. First run lsof i:8080
and kill the node processes using kill {PID}
.
- [Vuejs]-Signals error when i execute my npm package
- [Vuejs]-Compare two arrays of object with same values and chenge/add a property of one array to the other one in Vue.js2
Source:stackexchange.com