mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-06 13:45:17 +02:00
29 lines
511 B
JSON
29 lines
511 B
JSON
|
{
|
||
|
"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"
|
||
|
}
|