Initialize frontend app in React

This commit is contained in:
2025-05-08 19:41:10 +02:00
parent 08dba9c51f
commit 374ac696b2
19 changed files with 4652 additions and 0 deletions

7
web/vite.config.ts Normal file
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()],
})