diff options
author | 2025-06-05 12:45:04 +0000 | |
---|---|---|
committer | 2025-06-05 12:45:04 +0000 | |
commit | b4feb81355f9832c5698f81f8fdf33121e0189a5 (patch) | |
tree | 5b326153146a75a1e99ce8df0f04832b8cc79868 /astro.config.mjs | |
download | astro-examples/with-nanostores.tar.gz astro-examples/with-nanostores.tar.zst astro-examples/with-nanostores.zip |
Sync from 0947a69192ad6820970902c7c951fb0cf31fcf4bexamples/with-nanostores
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()], +}); |