From f076e720465c51cfda311618e509704bc0710238 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Sat, 4 Apr 2026 23:11:14 -0600 Subject: [PATCH] refactor: remove unused API configuration for bodyParser and sizeLimit --- apps/dokploy/pages/api/[...trpc].ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/apps/dokploy/pages/api/[...trpc].ts b/apps/dokploy/pages/api/[...trpc].ts index b77cb0390..83ff9b050 100644 --- a/apps/dokploy/pages/api/[...trpc].ts +++ b/apps/dokploy/pages/api/[...trpc].ts @@ -28,10 +28,3 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => { }; export default handler; - -export const config = { - api: { - bodyParser: false, - sizeLimit: "1gb", - }, -};