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

This commit is contained in:
2025-11-22 23:51:32 -08:00
parent f81395ca01
commit f5d0e9cbe5

View File

@@ -2,6 +2,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import viteConfig from './vite.config';
// 1. Separate the 'test' config (which has Unit Test exclusions)
// from the rest of the general Vite config (plugins, aliases, etc.)
// We cast to 'any' to avoid strict type checking on the import if necessary.
const { test: unitTestConfig, ...baseViteConfig } = viteConfig as any;
/**
* This configuration is specifically for integration tests.
* It MERGES with the main vite.config.ts to inherit plugins and aliases,