diff --git a/vercel.json b/vercel.json index 2e93fcf..64ca8a2 100644 --- a/vercel.json +++ b/vercel.json @@ -1,18 +1,14 @@ { "builds": [ { - "src": "main.py", + "src": "src/main.py", "use": "@vercel/python" } ], "routes": [ { "src": "/(.*)", - "dest": "main.py" - }, - { - "src": "/", - "dest": "main.py" + "dest": "src/main.py" } ] }