1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00
AdventureLog/backend/server/vercel.json

16 lines
244 B
JSON
Raw Normal View History

2024-07-08 11:58:21 -04:00
{
"builds": [
{
2024-07-08 12:04:35 -04:00
"src": "demo/wsgi.py",
2024-07-08 11:58:21 -04:00
"use": "@vercel/python",
"config": { "maxLambdaSize": "15mb", "runtime": "python3.9" }
}
],
"routes": [
{
"src": "/(.*)",
2024-07-08 12:04:35 -04:00
"dest": "demo/wsgi.py"
2024-07-08 11:58:21 -04:00
}
]
2024-07-08 11:58:21 -04:00
}