From 7632cf4104baeb3226b155681f2ce17422684b5c Mon Sep 17 00:00:00 2001 From: Alex Wellnitz Date: Sat, 21 Sep 2024 16:05:42 +0200 Subject: [PATCH] fix(backend): fixed cors --- backend/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/main.py b/backend/main.py index 142b2ab..25afded 100644 --- a/backend/main.py +++ b/backend/main.py @@ -31,10 +31,10 @@ app = FastAPI( origins = [ "http://localhost", "http://localhost:3000", - "http://localhost:8000", + "http://localhost:8000/*", "http://127.0.0.1", "http://127.0.0.1:3000", - "http://127.0.0.1:8000", + "http://127.0.0.1:8000/*", "https://sim-free.dev-null.rocks", ]