diff --git a/vercel.json b/vercel.json index b9b875e..8490f6b 100644 --- a/vercel.json +++ b/vercel.json @@ -1,14 +1,21 @@ { + "version": 2, "builds": [ { - "src": "api/index.py", - "use": "@vercel/python" + "src": "api/app.py", + "use": "@vercel/python", + "config": { + "runtime": "python3.12" + } } ], "routes": [ { "src": "/(.*)", - "dest": "api/index.py" + "dest": "api/app.py" } - ] + ], + "env": { + "SKIP_MT5_INIT": "1" + } }