🐛 Bug: Fix the bug where the maxDuration in the Vercel configuration file does not take effect.
Browse files- vercel.json +2 -2
vercel.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
| 3 |
{
|
| 4 |
"src": "main.py",
|
| 5 |
"use": "@vercel/python",
|
| 6 |
-
"
|
| 7 |
-
"maxDuration": 60
|
| 8 |
}
|
| 9 |
}
|
| 10 |
],
|
|
|
|
| 3 |
{
|
| 4 |
"src": "main.py",
|
| 5 |
"use": "@vercel/python",
|
| 6 |
+
"functions": {
|
| 7 |
+
"main.py": { "maxDuration": 60 }
|
| 8 |
}
|
| 9 |
}
|
| 10 |
],
|