image-matching-webui / vercel.json
Realcat
update: major change
499e141
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"
}
]
}