From 1c5342a3ad114a57157eb11179e520bfe0ec8c6a Mon Sep 17 00:00:00 2001 From: LightZirconite Date: Fri, 2 Jan 2026 19:42:20 +0100 Subject: [PATCH] feat: Add the deployment configuration to vercel.json --- vercel.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 9e26dfe..af4388d 100644 --- a/vercel.json +++ b/vercel.json @@ -1 +1,10 @@ -{} \ No newline at end of file +{ + "buildCommand": "exit 0", + "installCommand": "npm install --production", + "functions": { + "api/**/*.js": { + "runtime": "nodejs20.x", + "maxDuration": 10 + } + } +} \ No newline at end of file