upload file size limit increased in server.ts
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 1m16s

This commit is contained in:
2025-11-23 00:36:55 -08:00
parent f0913cad17
commit 2f0a114265
3 changed files with 5 additions and 4 deletions

View File

@@ -25,8 +25,9 @@ export default defineConfig({
// Vitest-specific configuration for the 'unit' test project.
test: {
// DEBUGGING LOG
onConsoleLog(log) { if (log.includes('[DEBUG]')) return false; },
// DEBUGGING LOG: return 'true' to allow the log, 'false' to suppress it.
// We want to SEE debug logs.
onConsoleLog(log) { if (log.includes('[DEBUG]')) return true; },
// The name for this project is defined by the filename in the workspace config.
name: 'unit',
environment: 'jsdom',