[Vuejs]-Trying to deploy Vue on Heroku

0👍

I think that you should set your package.json scripts, so that when heroku runs npm run start to start your application, you install your application dependencies before it starts running:

npm install && node server.js

Leave a comment