Skip to content

Commit 4cc750d

Browse files
committed
add vercel config
1 parent 3e58a4c commit 4cc750d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require('./app.js')

vercel.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": 2,
3+
"builds": [
4+
{
5+
"src": "./index.js",
6+
"use": "@vercel/node"
7+
}
8+
],
9+
"routes": [
10+
{
11+
"src": "/(.*)",
12+
"dest": "/"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)