feat: init react frontend

This commit is contained in:
Nicolas Meienberger
2025-08-10 11:00:54 +02:00
parent 0f9ace4dfa
commit f121825d14
18 changed files with 875 additions and 2 deletions

7
frontend/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()],
})