[Vuejs]-Vuejs post does not find NodeJs Express server/action

0👍

I finally figured it out. You have to manually add an address to the listener:

app.listen(63342, '127.0.0.1', function () {}

And in my case I was using the same port for API and Frontend, I had to switch ports and allow CORS

Leave a comment