From 422f768c193e2468c8c34717c7d2aa71e84a8c99 Mon Sep 17 00:00:00 2001 From: Andres Date: Tue, 22 Apr 2025 04:46:30 +0200 Subject: [PATCH] remove response limit? --- src/app/api/trpc/[trpc]/route.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/api/trpc/[trpc]/route.ts b/src/app/api/trpc/[trpc]/route.ts index c338ffa..428d4ab 100644 --- a/src/app/api/trpc/[trpc]/route.ts +++ b/src/app/api/trpc/[trpc]/route.ts @@ -30,5 +30,9 @@ const handler = (req: NextRequest) => } : undefined, }) - +export const config = { + api: { + responseLimit: false, + }, +} export { handler as GET, handler as POST }