initial commit

This commit is contained in:
2026-06-16 21:10:36 +02:00
commit 2c5be3f5a6
17 changed files with 2764 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from "vite";
import react, { reactCompilerPreset } from "@vitejs/plugin-react";
import babel from "@rolldown/plugin-babel";
export default defineConfig({
plugins: [react(), babel({ presets: [reactCompilerPreset()] })],
});