web_mangrove / vercel.json
oriastanjung's picture
fix concurency and asyncronous request
0f4a8fd
raw
history blame
No virus
208 Bytes
{
"version": 2,
"builds": [
{
"src": "main.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "main.py"
}
]
}