host / vercel.json
abdullahalioo's picture
Upload 10 files
c331343 verified
raw
history blame contribute delete
417 Bytes
{
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python",
"config": { "runtime": "3.11" }
}
],
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
],
"env": {
"PYTHON_VERSION": "3.11"
},
{
"functions": {
"app/api/**/route.ts": {
"maxDuration": 60
}
}