feat: created react project sub directory

This commit is contained in:
2025-05-20 18:30:15 +02:00
parent 3cfc89eb39
commit 3f369de3fa
17 changed files with 3357 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-swc'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})