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" - } - } - ] -}