Init: projet by Cursor

This commit is contained in:
Michael
2025-07-25 10:31:54 +02:00
commit 4fa29f06be
28 changed files with 5499 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
open: true
},
build: {
outDir: 'build',
sourcemap: true
}
})