16
loading...
This website collects cookies to deliver better user experience
npm run build
command (creates the production build of your Vue.js app) and then copied over the content of dist dir. to a freshly created dir. at server-side: build directory.npm run start
in root should start your Node app which serves up your Vue.js app meaning that by visiting http://localhost/NODE_PORT domain, you should be able interact with your application.heroku create PROJECTNAME
command.heroku config:set key=value
command.heroku config
command you can double-check if you have all the env. variables needed.git push heroku main
and it's all done.heroku logs --tail
command- heroku logs are super-useful, I was able to successfully troubleshoot when I had to based on the logs.