fix:test vercel

This commit is contained in:
muhamad fais aizat 2025-05-15 20:00:02 +07:00
parent d0ee0e91c3
commit 5908f33041
1 changed files with 12 additions and 13 deletions

View File

@ -1,14 +1,13 @@
{ {
"builds":[ "functions": {
{ "index.py": {
"src": "index.py", "runtime": "python3.11"
"use": "@vercel/python" }
} },
], "routes": [
"routes": [ {
{ "src": "/(.*)",
"src": "/(.*)", "dest": "index.py"
"dest": "index.py" }
} ]
] }
}