diff options
author | 2022-06-21 19:07:07 +0200 | |
---|---|---|
committer | 2022-06-21 13:07:07 -0400 | |
commit | e88b23ea5271369bcd26b0f011cc9146fc258b8c (patch) | |
tree | c784e82e3d66674ef924474b409a0c31d0521313 /examples/deno/astro.config.mjs | |
parent | b4db008e53867386542aa6e74c9649f574045dc9 (diff) | |
download | astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.tar.gz astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.tar.zst astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.zip |
add Astro Deno Example (#3645)
* add Astro Deno Example
* add changeset
* update pnpm lock
Co-authored-by: Dan Jutan <danjutan@gmail.com>
Diffstat (limited to 'examples/deno/astro.config.mjs')
-rw-r--r-- | examples/deno/astro.config.mjs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/deno/astro.config.mjs b/examples/deno/astro.config.mjs new file mode 100644 index 000000000..b8dd324a4 --- /dev/null +++ b/examples/deno/astro.config.mjs @@ -0,0 +1,9 @@ +import { defineConfig } from 'astro/config'; +import deno from "@astrojs/deno"; + +// https://astro.build/config +export default defineConfig({ + adapter: deno({ + port: 3000, + }), +});
\ No newline at end of file |