From 2a92cf6f0a7282e91655cd2661600f426dff53e6 Mon Sep 17 00:00:00 2001 From: Ahmet Kilinc Date: Sat, 20 Dec 2025 13:51:39 +0000 Subject: [PATCH] fix --- next.config.ts | 2 +- vercel.json | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 vercel.json diff --git a/next.config.ts b/next.config.ts index f8f92cb..931e634 100644 --- a/next.config.ts +++ b/next.config.ts @@ -4,7 +4,7 @@ const nextConfig: NextConfig = { experimental: { useCache: true, serverActions: { - bodySizeLimit: "999mb", + bodySizeLimit: "2mb", }, }, }; diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 9cc8957..0000000 --- a/vercel.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "functions": { - "app/api/git/*/route.ts": { - "maxDuration": 120, - "memory": 1024 - } - }, - "routes": [ - { - "src": "/api/git/(.*)", - "headers": { - "x-vercel-max-body-length": "104857600" - } - } - ] -}