From b3b9a0628796949a1458694b0be7ed873540c00d Mon Sep 17 00:00:00 2001 From: Rob Di Marco Date: Wed, 10 Sep 2025 10:22:03 -0400 Subject: [PATCH] Fix Vercel deployment: remove builds property conflict MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Problem**: Vercel deployment failed with error: "The functions property cannot be used in conjunction with the builds property" **Solution**: - Remove legacy builds property from vercel.json - Keep modern functions property for maxDuration configuration - Maintain routes and installCommand for single-service architecture Vercel now auto-detects the backend/server.ts file and builds it appropriately without needing explicit builds configuration. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- vercel.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/vercel.json b/vercel.json index ddb88da..0f16bd5 100644 --- a/vercel.json +++ b/vercel.json @@ -1,14 +1,5 @@ { "version": 2, - "builds": [ - { - "src": "backend/server.ts", - "use": "@vercel/node", - "config": { - "includeFiles": ["backend/**", "frontend/build/**"] - } - } - ], "routes": [ { "src": "/(.*)",