vella-backend / vercel.json
luanpoppe
initial commit
e63103b
raw
history blame contribute delete
343 Bytes
{
"builds": [
{
"src": "setup/wsgi.py",
"use": "@vercel/python",
"config": {
"maxLambdaSize": "15mb",
"runtime": "python3.9"
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "setup/wsgi.py"
}
]
}