Create vercel.json

This commit is contained in:
hillerliao
2022-05-11 22:24:57 +08:00
committed by GitHub
parent 845fd72317
commit f00078d373

15
vercel.json Normal file
View File

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