Skip to content

Commit 2e1b4a8

Browse files
committed
added the vercel configurations
1 parent eb4ee07 commit 2e1b4a8

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.vercelignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Ignore files for vercel
2+
3+
.github
4+
node_modules
5+
test
6+
.env
7+
.gitignore
8+
README.md
9+
HacktoberFest21Community

ProcFile

Lines changed: 0 additions & 1 deletion
This file was deleted.

vercel.json

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

0 commit comments

Comments
 (0)