fix: rubah vercel.json

This commit is contained in:
muhamad fais aizat 2025-05-15 21:34:53 +07:00
parent 714f2d8492
commit 50b004b168
2 changed files with 3 additions and 3 deletions

View File

@ -2,15 +2,15 @@
"version": 2,
"builds": [
{
"src": "./api/main.py",
"src": "api/index.py",
"use": "@vercel/python",
"config": { "runtime": "python3.10" }
"config": { "runtime": "python3.10" }
}
],
"routes": [
{
"src": "/(.*)",
"dest": "./api/main.py"
"dest": "api/index.py"
}
]
}