Initial commit: React + TypeScript Vite setup

This commit is contained in:
Peter
2026-04-19 19:25:55 +02:00
commit a387d03645
19 changed files with 3692 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})