Skip to content

Commit

Permalink
Fix example on README.md on @astrojs/node (#3817)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
ran-dall and aFuzzyBear authored Jul 4, 2022
1 parent 822befc commit 2f56664
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/itchy-bottles-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@astrojs/node": patch
---

Fix example on `README.md`
2 changes: 1 addition & 1 deletion packages/integrations/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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({
// ...
Expand Down

0 comments on commit 2f56664

Please sign in to comment.