From c2b6f38c473030b76e001144c8b6b0277efcf122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Fri, 1 Aug 2025 22:51:00 +0200 Subject: [PATCH] vercel setuo --- vercel.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..714d4d8 --- /dev/null +++ b/vercel.json @@ -0,0 +1,9 @@ +{ + "version": 2, + "builds": [ + { "src": "app.py", "use": "@vercel/python" } + ], + "routes": [ + { "src": "/(.*)", "dest": "api/app.py" } + ] +}