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:
parent
822befc59b
commit
2f56664f85
2 changed files with 6 additions and 1 deletions
5
.changeset/itchy-bottles-rhyme.md
Normal file
5
.changeset/itchy-bottles-rhyme.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@astrojs/node": patch
|
||||
---
|
||||
|
||||
Fix example on `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({
|
||||
// ...
|
||||
|
|
Loading…
Reference in a new issue