Skip to content

Commit

Permalink
add vercel config
Browse files Browse the repository at this point in the history
  • Loading branch information
Binaryify committed Feb 27, 2021
1 parent 3e58a4c commit 4cc750d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require('./app.js')
15 changes: 15 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": 2,
"builds": [
{
"src": "./index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/"
}
]
}

0 comments on commit 4cc750d

Please sign in to comment.