feat(frontend): bootstrap React + Vite + Tailwind + Router + Layout

This commit is contained in:
2026-05-20 21:10:27 +02:00
parent 4a382b5dd7
commit 480ee15df9
12 changed files with 3243 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: { '/api': 'http://localhost:3000' },
},
test: { environment: 'jsdom', setupFiles: ['./src/test-setup.ts'] },
});