diff options
author | 2022-09-20 14:29:33 +0200 | |
---|---|---|
committer | 2022-09-20 08:29:33 -0400 | |
commit | f2b515d0b48e8023ee28013e75e01fc8f058e010 (patch) | |
tree | a8040cc9dcd2353e03989c4e8776d53792900320 /examples/deno/astro.config.mjs | |
parent | be9eaa069287d16ac8efc69e13407a5dfa5e5808 (diff) | |
download | astro-f2b515d0b48e8023ee28013e75e01fc8f058e010.tar.gz astro-f2b515d0b48e8023ee28013e75e01fc8f058e010.tar.zst astro-f2b515d0b48e8023ee28013e75e01fc8f058e010.zip |
Add Deno example (#4641)
* Add Deno example
* update lockfile
* update README
* update README
Diffstat (limited to '')
-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..71783d132 --- /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({ + output: "server", + adapter: deno() +});
\ No newline at end of file |