diff options
Diffstat (limited to 'packages/integrations/vercel')
-rw-r--r-- | packages/integrations/vercel/README.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/integrations/vercel/README.md b/packages/integrations/vercel/README.md index e9f696e9b..ac18c66ee 100644 --- a/packages/integrations/vercel/README.md +++ b/packages/integrations/vercel/README.md @@ -24,8 +24,13 @@ If you wish to [use server-side rendering (SSR)](https://docs.astro.build/en/gui Add the Vercel adapter to enable SSR in your Astro project with the following `astro add` command. This will install the adapter and make the appropriate changes to your `astro.config.mjs` file in one step. -```bash +```sh +# Using NPM npx astro add vercel +# Using Yarn +yarn astro add vercel +# Using PNPM +pnpm astro add vercel ``` If you prefer to install the adapter manually instead, complete the following two steps: |