From 383830b6beb6db34f3749c98763e33a60993ff84 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Mon, 27 Oct 2025 01:30:27 +0700 Subject: [PATCH] fix: copilot payload --- apps/backend/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/src/main.ts b/apps/backend/src/main.ts index cdf01729..883a906f 100644 --- a/apps/backend/src/main.ts +++ b/apps/backend/src/main.ts @@ -45,7 +45,7 @@ async function bootstrap() { }) ); - app.use('/copilot', (req: any, res: any, next: any) => { + app.use('/copilot/*', (req: any, res: any, next: any) => { json({ limit: '50mb' })(req, res, next); });