vercel deployment

This commit is contained in:
bee 2022-03-01 19:22:14 -08:00
parent 15d712dfa9
commit b0f4d62ee8
No known key found for this signature in database
GPG key ID: 70EECBF29DA75D8B
2 changed files with 17 additions and 1 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@
config.json config.json
package-lock.json package-lock.json
.env .env
.vercel

15
vercel.json Normal file
View file

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