From 6fd2ff4478a99ae507832638fcbe7afb516abf27 Mon Sep 17 00:00:00 2001 From: Stefano Date: Mon, 5 May 2025 19:11:53 -0500 Subject: [PATCH] Add path to main in cercel.json --- vercel.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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" } ] }