Should probably just let Claude write the commit messages too

This commit is contained in:
2025-07-11 08:44:07 -04:00
parent 4dec00d283
commit 370c29a6fc
13 changed files with 1416 additions and 27 deletions

17
vitest.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
setupFiles: ['src/test-setup.ts'],
globals: true,
css: true,
},
resolve: {
alias: {
'@': '/src',
},
},
});