diff options
Diffstat (limited to 'astro.config.mjs')
-rw-r--r-- | astro.config.mjs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 000000000..9f7dbd219 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,9 @@ +// @ts-check +import { defineConfig } from 'astro/config'; +import preact from '@astrojs/preact'; + +// https://astro.build/config +export default defineConfig({ + // Enable many frameworks to support all different kinds of components. + integrations: [preact()], +}); |