Fix vercel.json configuration for Next.js

Removed invalid functions pattern that was causing deployment errors.
Simplified configuration for Next.js deployment on Vercel.
This commit is contained in:
Claude 2025-11-11 05:32:02 +00:00
parent 81ee9bdb46
commit 2c377c4bd6
No known key found for this signature in database

View file

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