| 1234567891011121314151617181920212223 |
- {
- "version": 2,
- "builds": [
- {
- "src": "api/index.py",
- "use": "@vercel/python"
- }
- ],
- "routes": [
- {
- "src": "/(.*)",
- "dest": "api/index.py"
- }
- ],
- "env": {
- "PYTHONPATH": "./"
- },
- "functions": {
- "api/index.py": {
- "maxDuration": 30
- }
- }
- }
|