yym68686 commited on
Commit
3e31cf5
·
1 Parent(s): d1ebf23

🐛 Bug: Fix the bug where the maxDuration in the Vercel configuration file does not take effect.

Browse files
Files changed (1) hide show
  1. vercel.json +2 -2
vercel.json CHANGED
@@ -3,8 +3,8 @@
3
  {
4
  "src": "main.py",
5
  "use": "@vercel/python",
6
- "config": {
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
  ],