[Vuejs]-Error: Request failed with status code 404 (Node.js + Vue.js)?

-1👍

It seems that app.listen(port) is missing in your app.js file:

app.listen(3000)

https://expressjs.com/en/starter/hello-world.html

-1👍

In controllers/csv.js you never send a response. You should have a res.send or res.render or res.json somewhere.

Leave a comment