This commit is contained in:
Philippe Torrel
2026-08-21 14:54:42 +02:00
parent e2da42e181
commit a5e74fd729
53 changed files with 2789 additions and 61 deletions

View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config'; // nicht mehr 'vite'
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/tests/setupTests.ts',
},
});