1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 21:25:19 +02:00
AdventureLog/backend/server/vercel.json
2024-07-08 12:04:35 -04:00

15 lines
244 B
JSON

{
"builds": [
{
"src": "demo/wsgi.py",
"use": "@vercel/python",
"config": { "maxLambdaSize": "15mb", "runtime": "python3.9" }
}
],
"routes": [
{
"src": "/(.*)",
"dest": "demo/wsgi.py"
}
]
}