Vercel config

This commit is contained in:
Piotr Szkudlarek 2024-03-14 23:56:54 +01:00
parent d550725622
commit fe9d54d18e

View File

@ -0,0 +1,13 @@
{
"builds": [{
"src": "PlanktonDetector/wsgi.py",
"use": "@vercel/python",
"config": { "maxLambdaSize": "15mb" }
}],
"routes": [
{
"src": "/(.*)",
"dest": "PlanktonDetector/wsgi.py"
}
]
}