hotspot / App /vercel.json
Mbonea's picture
testing deployment
9e798a1
raw
history blame
202 Bytes
{
"builds": [
{
"src": "App/app.py",
"use": "@vercel/python",
"runtime": "python3.10"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "App/app.py"
}
]
}