diff options
author | 2022-07-04 14:51:30 -0700 | |
---|---|---|
committer | 2022-07-04 22:51:30 +0100 | |
commit | 2f56664f85596c6268ecb44bbb9c36cca2ea49c5 (patch) | |
tree | ec331bf9530562ea8e80050eac6cbf6b4e371d6d | |
parent | 822befc59b3cdf98d429baa7e3716f7aaae661c3 (diff) | |
download | astro-2f56664f85596c6268ecb44bbb9c36cca2ea49c5.tar.gz astro-2f56664f85596c6268ecb44bbb9c36cca2ea49c5.tar.zst astro-2f56664f85596c6268ecb44bbb9c36cca2ea49c5.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-- | .changeset/itchy-bottles-rhyme.md | 5 | ||||
-rw-r--r-- | packages/integrations/node/README.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/itchy-bottles-rhyme.md b/.changeset/itchy-bottles-rhyme.md new file mode 100644 index 000000000..67758e717 --- /dev/null +++ b/.changeset/itchy-bottles-rhyme.md @@ -0,0 +1,5 @@ +--- +"@astrojs/node": patch +--- + +Fix example on `README.md` 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({ // ... |