fix: rubah vercel.json

This commit is contained in:
muhamad fais aizat 2025-05-15 21:20:24 +07:00
parent c222661c5a
commit b6e03fd176
1 changed files with 13 additions and 12 deletions

View File

@ -1,16 +1,17 @@
{ {
"builds": [ "version": 2,
{ "builds": [
"src": "api/main.py", {
"use": "@vercel/python" "src": "./api/main.py",
} "use": "@vercel/python"
], }
"routes": [ ],
{ "routes": [
"src": "/(.*)", {
"dest": "/api/main.py" "src": "/(.*)",
} "dest": "./api/main.py"
] }
]
} }