From 285bdbbaf9674a0ba5f05d6be0fd5d9487996892 Mon Sep 17 00:00:00 2001 From: pablodanswer Date: Sun, 15 Sep 2024 16:55:30 -0700 Subject: [PATCH] Fix stop generating locally (#2452) * fix stop generating locally * . --- web/src/app/api/[...path]/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/app/api/[...path]/route.ts b/web/src/app/api/[...path]/route.ts index 550ebaf6d1f..6ca13aba146 100644 --- a/web/src/app/api/[...path]/route.ts +++ b/web/src/app/api/[...path]/route.ts @@ -79,6 +79,7 @@ async function handleRequest(request: NextRequest, path: string[]) { method: request.method, headers: request.headers, body: request.body, + signal: request.signal, // @ts-ignore duplex: "half", });