0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -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 efc3c1d6fd
commit 3fcf616aaa

View file

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