Skip to content

Commit

Permalink
fix: move vercel inside backend
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksanderNekr committed Jun 23, 2024
1 parent 52b50d1 commit 2c7552a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vercel.json → backend/vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"version": 2,
"builds": [
{
"src": "backend/src/index.ts",
"src": "src/index.ts",
"use": "@vercel/node",
"config": { "includeFiles": ["backend/**/*"] }
"config": { "includeFiles": ["**/*"] }
}
],
"routes": [
{
"src": "/(.*)",
"dest": "backend/src/index.ts"
"dest": "src/index.ts"
}
]
}

0 comments on commit 2c7552a

Please sign in to comment.