summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Benjamin Geets <benjamingeets@tutamail.com> 2022-10-13 21:30:31 +0200
committerGravatar GitHub <noreply@github.com> 2022-10-13 15:30:31 -0400
commit984bc7d0dea0dc0b22b900c557b43472ec58df5a (patch)
tree65da6ee869f26ff3dfd148e0ca83c414b17fb0be
parent9e041f464c97ee96eb8b0c31782f9447a831b141 (diff)
downloadastro-984bc7d0dea0dc0b22b900c557b43472ec58df5a.tar.gz
astro-984bc7d0dea0dc0b22b900c557b43472ec58df5a.tar.zst
astro-984bc7d0dea0dc0b22b900c557b43472ec58df5a.zip
doc(node): fix import (#5079)
Diffstat (limited to '')
-rw-r--r--packages/integrations/node/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/README.md b/packages/integrations/node/README.md
index 9e0f8150e..2fdcc2895 100644
--- a/packages/integrations/node/README.md
+++ b/packages/integrations/node/README.md
@@ -65,7 +65,7 @@ Controls whether the adapter builds to `middleware` or `standalone` mode.
- `middleware` mode allows the built output to be used as middleware for another Node.js server, like Express.js or Fastify.
```js
import { defineConfig } from 'astro/config';
- import nodejs from '@astrojs/node';
+ import node from '@astrojs/node';
export default defineConfig({
output: 'server',