Skip to content

Commit 4083491

Browse files
author
Neil Munoz
committed
Fix Vercel runtime error - remove invalid runtime specification
- Remove 'runtime': 'python3.11' that was causing deployment failure - Let Vercel auto-detect Python runtime for .py files - Keep memory and maxDuration configurations for performance - Fix 'Function Runtimes must have a valid version' error
1 parent 28c9f47 commit 4083491

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vercel.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"functions": {
44
"api/index.py": {
55
"maxDuration": 30,
6-
"memory": 1024,
7-
"runtime": "python3.11"
6+
"memory": 1024
87
}
98
},
109
"routes": [

0 commit comments

Comments
 (0)