diff options
author | 2022-09-09 03:01:27 +0000 | |
---|---|---|
committer | 2022-09-08 23:01:27 -0400 | |
commit | 4753d219490c9b07e7b7d5bb448dcbbcf8e72398 (patch) | |
tree | 72b3e18d755f3119ac8ffdaa75e55b06d7eb69ab | |
parent | 65d753488e9a8b3dca6247fe00dfb8c89f28998f (diff) | |
download | astro-4753d219490c9b07e7b7d5bb448dcbbcf8e72398.tar.gz astro-4753d219490c9b07e7b7d5bb448dcbbcf8e72398.tar.zst astro-4753d219490c9b07e7b7d5bb448dcbbcf8e72398.zip |
docs: correct typo in `@astrojs/node` integration (#4688)
-rw-r--r-- | packages/integrations/node/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/README.md b/packages/integrations/node/README.md index cb2297081..3ab5f0b17 100644 --- a/packages/integrations/node/README.md +++ b/packages/integrations/node/README.md @@ -39,7 +39,7 @@ If you prefer to install the adapter manually instead, complete the following tw ```js title="astro.config.mjs" ins={2, 5-6} import { defineConfig } from 'astro/config'; - import netlify from '@astrojs/node'; + import node from '@astrojs/node'; export default defineConfig({ output: 'server', |