dia-critic / vercel.json
Florin Bobiș
latest
f236056
raw
history blame
278 Bytes
{
"version": 2,
"builds": [
{
"src": "/index.py",
"use": "@vercel/python",
"config": {
"maxLambdaSize": "150mb"
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/index.py"
}
]
}