From 0eb14c7b65382ebfe6ec096ee56a8fb49f1840d5 Mon Sep 17 00:00:00 2001 From: Pratik Kumar Singh Date: Wed, 1 May 2024 01:51:14 +0530 Subject: [PATCH] Update vercel.json --- vercel.json | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/vercel.json b/vercel.json index 54c6cc6..e93a45f 100644 --- a/vercel.json +++ b/vercel.json @@ -1,12 +1,16 @@ { - "version": 2, - "builds": [ - { - "src": "app.py", - "use": "@vercel/python", - "config": { - "runtime": "python3.12.0" - } - } - ] + "version":2, + "builds": [ + { + "src":"./index.py", + "use": "@vercel/python", + "config":{"runtime":"python3.8"} + } + ], + "routes": [ + { + "src":"/(.*)", + "dest":"/" + } + ] }