Skip to content

Commit

Permalink
Refactor vercel.json to remove Python runtime version specification
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeisraeljohn committed Sep 19, 2024
1 parent 52d3ac3 commit 5aa0c71
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
{
"version": 2,
"builds": [{ "src": "main.py", "use": "@vercel/python" }],
"routes": [{ "src": "/(.*)", "dest": "main.py" }],
"functions": {
"main.py": {
"runtime": "python3.9"
}
}
"routes": [{ "src": "/(.*)", "dest": "main.py" }]
}

0 comments on commit 5aa0c71

Please sign in to comment.