Add React application with Vite setup and remove legacy files

This commit is contained in:
Lukian 2025-01-21 09:12:25 +01:00
parent d003ba2df6
commit 6758f8df49
20 changed files with 3603 additions and 19 deletions

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