0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

docs: integrations: yarn & pnpm (#4836)

This commit is contained in:
Michael Rienstra 2022-09-22 04:16:02 -07:00 committed by GitHub
parent bbe4327927
commit 06e9a08dfb

View file

@ -27,8 +27,13 @@ If you wish to [use server-side rendering (SSR)](https://docs.astro.build/en/gui
Add the Netlify 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 netlify
# Using Yarn
yarn astro add netlify
# Using PNPM
pnpm astro add netlify
```
If you prefer to install the adapter manually instead, complete the following two steps: