This commit is contained in:
2026-06-22 05:51:46 +03:00
commit 03f9319b3a
32 changed files with 11008 additions and 0 deletions

12
astro.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
export default defineConfig({
output: "static",
integrations: [
react(),
...(process.env.NODE_ENV === "development"
? [(await import("@keystatic/astro")).default()]
: []),
],
});