💻 Code: Increase the maximum runtime to 60 seconds when deploying with Vercel.
Browse files- vercel.json +6 -1
vercel.json
CHANGED
|
@@ -10,5 +10,10 @@
|
|
| 10 |
"src": "/(.*)",
|
| 11 |
"dest": "main.py"
|
| 12 |
}
|
| 13 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
}
|
|
|
|
| 10 |
"src": "/(.*)",
|
| 11 |
"dest": "main.py"
|
| 12 |
}
|
| 13 |
+
],
|
| 14 |
+
"functions": {
|
| 15 |
+
"main.py": {
|
| 16 |
+
"maxDuration": 60
|
| 17 |
+
}
|
| 18 |
+
}
|
| 19 |
}
|