chore: clean .gitignore cache

This commit is contained in:
GitHub Actions
2026-01-26 19:21:33 +00:00
parent 1b1b3a70b1
commit e5f0fec5db
1483 changed files with 0 additions and 472793 deletions

View File

@@ -1,50 +0,0 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true
}
}
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/setupTests.ts',
testTimeout: 10000, // 10 seconds max per test
hookTimeout: 10000, // 10 seconds for beforeEach/afterEach
coverage: {
provider: 'istanbul',
reporter: ['text', 'json-summary', 'lcov'],
reportsDirectory: './coverage',
exclude: [
'node_modules/',
'src/setupTests.ts',
'**/*.d.ts',
'**/*.config.*',
'**/mockData',
'dist/'
]
}
},
build: {
outDir: 'dist',
sourcemap: true,
// TEMPORARY: Disable code splitting to diagnose React initialization issue
// If this works, the problem is module loading order in async chunks
chunkSizeWarningLimit: 2000,
rollupOptions: {
output: {
// Disable code splitting - bundle everything into one file
manualChunks: undefined,
inlineDynamicImports: true
}
}
}
})