initial commit

This commit is contained in:
2026-05-25 21:28:57 +02:00
parent da17a370c4
commit ecaa160826
26 changed files with 4904 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import react, { reactCompilerPreset } from '@vitejs/plugin-react'
import babel from '@rolldown/plugin-babel'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
babel({ presets: [reactCompilerPreset()] })
],
})