Switch from preact to react

This commit is contained in:
2025-01-02 10:36:58 -06:00
parent e8fe3e8ec9
commit e61c4715e1
6 changed files with 203 additions and 280 deletions

View File

@@ -2,7 +2,8 @@
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import sitemap from "@astrojs/sitemap";
import preact from "@astrojs/preact";
import react from "@astrojs/react";
// TODO: Add linting to build steps
@@ -21,8 +22,6 @@ export default defineConfig({
priority: 1.0,
// xslURL: "/sitemap.xsl",
}),
preact({
devtools: import.meta.env.DEV ?? false,
}),
react(),
],
});