diff --git a/astro.config.mjs b/astro.config.mjs index 6ce5f31..b8dac79 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,7 +1,18 @@ import { defineConfig } from "astro/config"; import tailwind from "@astrojs/tailwind"; +import preact from "@astrojs/preact"; + +import react from "@astrojs/react"; // https://astro.build/config export default defineConfig({ - integrations: [tailwind()], + integrations: [ + tailwind(), + preact({ + include: ["**/preact/*"], + }), + react({ + include: ["**/react/*"], + }), + ], });