MatchAnything / vercel.json
XingyiHe's picture
init commit
3040ac4
raw
history blame contribute delete
305 Bytes
{
"builds": [
{
"src": "api/server.py",
"use": "@vercel/python",
"config": {
"maxLambdaSize": "10gb",
"runtime": "python3.10"
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "api/server.py"
}
]
}