first commit

This commit is contained in:
Krisztu
2026-02-25 11:47:30 +01:00
commit d03d9b4b5d
20 changed files with 4593 additions and 0 deletions

12
vite.config.js Normal file
View File

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