footypredict-pro / vercel.json
NetBoss
V3.0 Ultimate Enhancement - Complete production system
6f7e932
{
"version": 2,
"builds": [
{
"src": "api/index.py",
"use": "@vercel/python",
"config": {
"maxLambdaSize": "50mb"
}
}
],
"routes": [
{
"src": "/static/(.*)",
"dest": "/static/$1"
},
{
"src": "/(.*)",
"dest": "/api/index.py"
}
]
}