Setup app

This commit is contained in:
2024-08-08 12:52:23 +01:00
parent eb4740e874
commit 8e63aa8b30
34 changed files with 5419 additions and 2 deletions

7
vite.config.ts Normal file
View File

@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})