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>
This commit is contained in:
Randall 2022-07-04 14:51:30 -07:00 committed by GitHub
parent 822befc59b
commit 2f56664f85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"@astrojs/node": patch
---
Fix example on `README.md`

View file

@ -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({
// ...