Fix Vercel deployment hanging issue

Added directUrl configuration to Prisma schema and created vercel.json
with extended timeout settings to resolve deployment hangs after database
check. Includes comprehensive deployment guide for Supabase setup.
This commit is contained in:
Claude 2025-11-11 05:26:14 +00:00
parent 03c892aac0
commit 81ee9bdb46
No known key found for this signature in database
3 changed files with 118 additions and 0 deletions

8
vercel.json Normal file
View file

@ -0,0 +1,8 @@
{
"functions": {
"api/**/*.js": {
"maxDuration": 300
}
},
"buildCommand": "npm run build-db && npm run build"
}