How to do production deployment for vue application?
I have created a vue project (front-end) and back-end the api was developed using express.js, now I want to produce deployment , but not sure what the process is?
After running the "npm run build" command, I got the dist folder. It contains all the information you need for your project.
Can anyone tell me the steps for "production deployment"?
What are the further steps to proceed with Production deployment
Production deployment solution that requires a web server. ??
After executing
npm run build
, you have successfully created adist
folder containing your production website. Now, you have to deploy it to your own custom server, or you can use a service like Firebase Hosting, Vercel, Netlify, etc.