chore: create a React app with Vite tool

Used the Vite build tool to create a React app, with TypeScript.

close: N25B-81
This commit is contained in:
Twirre Meulenbelt
2025-09-25 14:09:22 +02:00
parent f42f791862
commit f70330f546
16 changed files with 3780 additions and 81 deletions

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