Added Vite react-ts template

This commit is contained in:
Kenan Alić
2025-09-23 16:13:28 +02:00
parent f17d11bb35
commit 5daa488400
16 changed files with 2356 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()],
})