Initial commit: Due Diligence Tracker project

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alexander Domene
2025-09-28 10:14:13 +02:00
commit b056725f02
58 changed files with 12011 additions and 0 deletions

18
client/vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
/// <reference types="vitest" />
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: true,
allowedHosts: 'all'
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/test/setup.ts',
exclude: ['**/e2e/**', '**/node_modules/**'],
},
})