feat: 添加了 vercel 部署的配置文件

This commit is contained in:
MeowCracker 2025-04-04 18:13:41 +08:00
parent a6efc64896
commit 0afd6a6764

18
vercel.json Normal file
View File

@ -0,0 +1,18 @@
{
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
],
"region": [
"hkg1"
]
}