Plankton_Detector/PlanktonDetector/vercel.json

14 lines
268 B
JSON
Raw Normal View History

2024-03-14 23:56:54 +01:00
{
"builds": [{
"src": "PlanktonDetector/wsgi.py",
"use": "@vercel/python",
"config": { "maxLambdaSize": "15mb" }
}],
"routes": [
{
"src": "/(.*)",
"dest": "PlanktonDetector/wsgi.py"
}
]
}