fix: increase scan proxy timeout from 3 to 5 minutes

This commit is contained in:
Benjamin Admin
2026-04-29 16:24:22 +02:00
parent 4bf92f42b8
commit 85c4cbbf37
@@ -15,7 +15,7 @@ export async function POST(request: NextRequest) {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body,
signal: AbortSignal.timeout(180000), // 3 min — multi-page scan + LLM
signal: AbortSignal.timeout(300000), // 5 min — multi-page scan + LLM calls
})
if (!response.ok) {