uni-api / vercel.json
yym68686's picture
✨ Feature: Add support for vercel deployment
deb4a88
raw
history blame
190 Bytes
{
"builds": [
{
"src": "main.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "main.py"
}
]
}