Skip to content

Commit

Permalink
Update Changes & Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nixrajput committed Jul 26, 2024
1 parent 8b10c61 commit 7485db6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@
"outputDirectory": "dist",
"builds": [
{
"src": "/dist/index.js",
"use": "@vercel/node"
"src": "src/index.ts",
"use": "@vercel/node",
"config": {
"includeFiles": [
"src/**/*"
]
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/dist/index.js"
"dest": "src/index.ts"
}
]
}

0 comments on commit 7485db6

Please sign in to comment.