Skip to content

Commit

Permalink
Fix Deploy failed
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvallejosdev committed Jul 26, 2023
1 parent 0464434 commit 08dce37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"builds": [{
"src": "todo_project/wsgi.py",
"src": "app/todo_project/wsgi.py",
"use": "@vercel/python",
"config": { "maxLambdaSize": "15mb", "runtime": "python3.9" }
}],
"routes": [
{
"src": "/(.*)",
"dest": "todo_project/wsgi.py"
"src": "app/(.*)",
"dest": "app/todo_project/wsgi.py"
}
]
}

0 comments on commit 08dce37

Please sign in to comment.