From c0edbcfcf092609d216be6cded4363d9da2a0018 Mon Sep 17 00:00:00 2001 From: Michael Rienstra Date: Thu, 22 Sep 2022 04:16:02 -0700 Subject: [PATCH] docs: integrations: yarn & pnpm (#4836) --- packages/adapters/node/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/adapters/node/README.md b/packages/adapters/node/README.md index 3ab5f0b174640..2a9ec9bbd545f 100644 --- a/packages/adapters/node/README.md +++ b/packages/adapters/node/README.md @@ -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: