frontend: init project

This commit is contained in:
tylen
2025-08-31 22:20:51 +03:00
parent 68527a5be5
commit 2bc48a6901
16 changed files with 382 additions and 0 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()],
})