Skip to content

Commit

Permalink
🚀 feat: add vercel.json for deploying the app on vercel
Browse files Browse the repository at this point in the history
  • Loading branch information
Pape Mayel Diagne THIAM authored and Pape Mayel Diagne THIAM committed May 24, 2024
1 parent b2737e5 commit 0daa422
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": 2,
"name": "gpma-back",
"builds": [
{
"src": "./dist/app.js",
"use": "@vercel/node",
"config": { "includeFiles": ["dist/**"] }
}
],
"routes": [
{
"src": "/(.*)",
"dest": "dist/app.js"
}
]
}

0 comments on commit 0daa422

Please sign in to comment.