diff options
author | kartofen <mladenovnasko0@gmail.com> | 2022-08-26 23:54:17 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2022-08-26 23:54:17 +0300 |
commit | 8f5278eb443864910dd9c2131c992d71e3af2d20 (patch) | |
tree | d56d805fa010e4b10af7dec0ed359f218e859667 /astro.config.mjs |
Big bang
Diffstat (limited to 'astro.config.mjs')
-rw-r--r-- | astro.config.mjs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..7ea90a0 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,12 @@ +import { defineConfig } from 'astro/config'; + +import deno from '@astrojs/deno'; +import node from '@astrojs/node'; +import svelte from "@astrojs/svelte"; + +// https://astro.build/config +export default defineConfig({ + output: 'server', + adapter: node(), + integrations: [svelte()] +});
\ No newline at end of file |