diff --git a/docs/guide/static-deploy.md b/docs/guide/static-deploy.md index 17a9c18d9057c5..d01fd52ec44b27 100644 --- a/docs/guide/static-deploy.md +++ b/docs/guide/static-deploy.md @@ -276,6 +276,32 @@ By default, any new commit pushed to the specified branch will automatically tri You can also add a [custom domain](https://render.com/docs/custom-domains) to your project. +## Sevalla + +You can deploy your Vite app as a Static Site on [Sevalla's free static site hosting](https://sevalla.com/static-site-hosting/). + +1. Log in to your [Sevalla dashboard](https://app.sevalla.com). + +2. Click **Static Sites** > **Add Static Site**. + +3. Connect your **GitHub**, **GitLab**, or **Bitbucket** repository. + +4. Select your project repo and branch (commonly `main`). + +5. (Optional) Enable **Pull Request previews**. + +6. Click **Continue** to open **Build settings**. Sevalla will auto-detect settings, but confirm the following for a Vite app: + - **Build command:** `npm run build` + - **Publish directory:** `dist` + +7. If you have environment variables, add them now, then click **Create site**. + +8. Sevalla will build and deploy your site to a Sevalla-generated URL like `https://.sevalla.page`. + +If you checked **Automatic deployments on commit**, new pushes to the selected branch will trigger fresh deployments (you can change this later in settings). + +You can also add a [custom domain](https://docs.sevalla.com/static-sites/domains) to your project. +