From 42e0d5e30ed6283b11a6cf45608e424b7c64f7cb Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 01:25:51 +0000 Subject: [PATCH] Add explicit serverless function configuration to vercel.json cgen-91dba0831b8f4e8ab20850ac5bc6a38e --- vercel.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vercel.json b/vercel.json index 0ddf6b0d..b1e85feb 100644 --- a/vercel.json +++ b/vercel.json @@ -2,6 +2,12 @@ "version": 2, "buildCommand": "npm ci && npm run build", "outputDirectory": "dist/spa", + "functions": { + "api/**/*.ts": { + "memory": 1024, + "maxDuration": 60 + } + }, "redirects": [ { "source": "/:path(.*)",