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 }