web-ui: raise proxy body limit to 100mb for large document uploads
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 3m9s

Default 10mb caused upload-tagged 500s on scanned PDFs in case 1027-26
(Next 16 truncates body, FastAPI sees broken multipart, socket hang up).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-01 15:12:41 +00:00
parent f256eddbb1
commit 817d6e6d8d

View File

@@ -13,6 +13,10 @@ const API_ORIGIN =
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone", output: "standalone",
experimental: {
proxyClientMaxBodySize: "100mb",
},
async rewrites() { async rewrites() {
return [ return [
{ {