fix: copilot payload

This commit is contained in:
Nevo David 2025-10-27 01:30:27 +07:00
parent 33255d7796
commit 383830b6be
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});