Skip to content
This repository was archived by the owner on Sep 23, 2022. It is now read-only.

Commit ac6b870

Browse files
committedJul 14, 2022
Update package.json
1 parent 15ca3fb commit ac6b870

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ _*.*
55
dist
66
package-lock.json
77
build
8+
.vercel

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"@types/express": "^4.17.13",
3434
"@types/node": "^18.0.0",
3535
"@types/prompt-sync": "^4.1.1",
36-
"typescript": "^4.7.4"
36+
"typescript": "^4.7.4",
37+
"vercel": "^27.1.2"
3738
},
3839
"dependencies": {
3940
"colors": "^1.4.0",

‎vercel.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
{
22
"version": 2,
3+
"public": true,
4+
"builds": [
5+
{
6+
"src": "api.ts",
7+
"use": "@vercel/node"
8+
}
9+
],
310
"routes": [
411
{
512
"src": "/(.*)",
6-
"dest": "/"
13+
"dest": "/api.ts"
714
}
815
]
9-
}
16+
}

1 commit comments

Comments
 (1)

vercel[bot] commented on Jul 14, 2022

@vercel[bot]
This repository has been archived.