ClientTest / vercel.json
zinoubm's picture
fixing typo vercel.json
7ed4a59
raw
history blame contribute delete
275 Bytes
{
"devCommand": "uvicorn main:app --host 0.0.0.0 --port 3000",
"builds": [
{
"src": "app.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
]
}