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

29 lines
511 B
JSON
Raw Normal View History

2024-07-08 11:58:21 -04:00
{
"version": 2,
"builds": [
{
"src": "demo/wsgi.py",
"use": "@vercel/python",
"config": { "maxLambdaSize": "15mb", "runtime": "python3.9" }
},
{
"src": "build_files.sh",
"use": "@vercel/static-build",
"config": {
"distDir": "ui/staticfiles"
}
}
],
"routes": [
{
"src": "/static/(.*)",
"dest": "/static/$1"
},
{
"src": "/(.*)",
"dest": "demo/wsgi.py"
}
],
"outputDirectory": "ui/staticfiles"
}