chore(preact): add Preact to Astro

This commit is contained in:
Stefan Imhoff
2023-04-02 15:51:09 +02:00
parent a297452050
commit 9b784ae818
4 changed files with 142 additions and 9 deletions

View File

@@ -1,9 +1,10 @@
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import svelte from '@astrojs/svelte';
import tailwind from '@astrojs/tailwind';
import preact from "@astrojs/preact";
// https://astro.build/config
export default defineConfig({
integrations: [mdx(), svelte(), tailwind()],
});
integrations: [mdx(), svelte(), tailwind(), preact()]
});