PublishingHow to Publish
Example: Manual VM or static server deployment
Export code from GitHub, run `npm run build` to generate static files. SSH into your server and copy the `/dist` folder to your web server's document root (e.g., /var/www/html). Configure your web server (nginx, Apache) to serve the files and handle routing properly. This simple approach works well for apps without complex server-side logic.
