Skip to content

Commit

Permalink
feat: 파일 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosial committed Jan 5, 2024
1 parent 1f53a78 commit d7c0ecf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ lerna-debug.log*
!.vscode/launch.json
!.vscode/extensions.json

.env
.env
.vercel
9 changes: 8 additions & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
{
"version": 2,
"builds": [
{
"src": "src/main.ts",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "dist/main.js"
"dest": "src/main.ts",
"methods": ["GET", "POST", "PUT", "DELETE"]
}
]
}

0 comments on commit d7c0ecf

Please sign in to comment.