Skip to content

Commit

Permalink
Update vercel.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pratiks05 authored Apr 30, 2024
1 parent f7f7de2 commit eefb8fb
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"version": 2,
"builds": [
{"src": "app.py", "use": "@vercel/python"}
],
"routes": [
{"src": "/(.*)", "dest": "app.py"}
]
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python",
"config": {
"runtime": "python3.9" // Change to your desired version (e.g., python3.8)
}
}
]
}

0 comments on commit eefb8fb

Please sign in to comment.