diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md index 4b877ec12f..b0374960b9 100644 --- a/docs/src/pages/guides/deploy.md +++ b/docs/src/pages/guides/deploy.md @@ -335,6 +335,18 @@ Use the following build settings: Then click the **Save and Deploy** button. +## Render + +You can deploy your Astro project on [Render](https://render.com/) following these steps: + +1. Create a [render.com account](https://dashboard.render.com/) and sign in +2. Click the **New +** button from your dashboard and select **Static Site** +3. Connect your [GitHub](https://github.com/) or [GitLab](https://about.gitlab.com/) repository or alternatively enter the public URL of a public repository +4. Give your website a name, select the branch and specify the build command and publish directory + - **build command:** `npm run build` + - **publish directory:** `dist` +6. Click the **Create Static Site** button + ## Credits This guide was originally based off [Vite](https://vitejs.dev/)’s well-documented static deploy guide.