Remove legacy vercel routing config

This commit is contained in:
2569718930@qq.com
2026-03-06 21:20:45 +08:00
parent ba13d1fc32
commit 28fcc352f8
-27
View File
@@ -1,27 +0,0 @@
{
"version": 2,
"builds": [
{
"src": "web/app.py",
"use": "@vercel/python"
},
{
"src": "web/static/**",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/api/(.*)",
"dest": "web/app.py"
},
{
"src": "/static/(.*)",
"dest": "/web/static/$1"
},
{
"src": "/(.*)",
"dest": "/web/static/index.html"
}
]
}