Deploying to Hosting Platforms
Deploy Vue apps to static hosts and platforms.
Shipping Your App
A Vue SPA builds to static files, so you can host it on any static host. Platforms like Netlify, Vercel, and GitHub Pages make deploying these files fast and often free.
What You Deploy
You deploy the contents of the dist folder produced by npm run build. The host serves these files over a CDN to users worldwide.
npm run build
# upload the dist/ folder to your hostAll lessons in this course
- Optimizing the Build Process
- Deploying to Hosting Platforms
- Monitoring and Maintenance