Scaffold Vite React frontend

This commit is contained in:
otivm
2026-04-25 11:36:09 +00:00
parent 5738d9faa6
commit 6725f11222
16 changed files with 2983 additions and 54 deletions

7
vite.config.js 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()],
})