Add Vercel configuration for Python API

This commit is contained in:
Reynov Christian
2025-10-16 01:00:39 +08:00
committed by GitHub
parent a4a7467a5f
commit ddb2082a66
+14
View File
@@ -0,0 +1,14 @@
{
"builds": [
{
"src": "api/index.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "api/index.py"
}
]
}