summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Randall <ran.dall@icloud.com> 2022-07-04 14:51:30 -0700
committerGravatar GitHub <noreply@github.com> 2022-07-04 22:51:30 +0100
commitcd01ee9e74424d0745aa84cfa776b1a746ab3de9 (patch)
tree25243ff4b8e536a6deed7fb38f3d15c5d2a0f683
parent59c903cc74828fb950b399a9a6fe305f7ccee567 (diff)
downloadastro-cd01ee9e74424d0745aa84cfa776b1a746ab3de9.tar.gz
astro-cd01ee9e74424d0745aa84cfa776b1a746ab3de9.tar.zst
astro-cd01ee9e74424d0745aa84cfa776b1a746ab3de9.zip
Fix example on `README.md` on @astrojs/node (#3817)
* Fix example on `README.md` The example was suggesting `import deno from '@astrojs/node';` which doesn't work. It needs to be `import node from '@astrojs/node';`. * Create itchy-bottles-rhyme.md Co-authored-by: Peter Singh <afuzzybear@outlook.com>
-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 ad8629e1a..a31466cf7 100644
--- a/packages/integrations/node/README.md
+++ b/packages/integrations/node/README.md
@@ -33,7 +33,7 @@ __astro.config.mjs__
```js
import { defineConfig } from 'astro/config';
-import deno from '@astrojs/node';
+import node from '@astrojs/node';
export default defineConfig({
// ...