initial commit

This commit is contained in:
user
2025-12-07 16:07:03 +02:00
commit ec0ef01427
73 changed files with 5115 additions and 0 deletions

14
astro.config.mjs Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import adapter from "@nurodev/astro-bun";
import tailwind from "@tailwindcss/vite";
export default defineConfig({
base: "/",
adapter: adapter(),
output: "server",
vite: {
plugins: [tailwind()],
},
integrations: [react({ experimentalDisableStreaming: true })],
});