transcript

This commit is contained in:
suraj.shenoy.b@gmail.com
2025-01-25 18:40:30 -06:00
parent 9f8fbccdfe
commit fe8e1faed8
6 changed files with 177 additions and 93 deletions

16
vercel.json Normal file
View File

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