Create vercel.json

This commit is contained in:
chaoszhu 2022-09-29 15:44:05 +08:00 committed by GitHub
parent 132c598b51
commit d8b13e506e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
server/vercel.json Normal file
View File

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