From 363528d2ce211ac7da036373e0f70f48d184301e Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Mon, 22 May 2023 15:18:25 +0200 Subject: [PATCH] fix(cors): allow all origins --- backend/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api.py b/backend/api.py index d955d811b..ee6c5a628 100644 --- a/backend/api.py +++ b/backend/api.py @@ -35,7 +35,7 @@ app = FastAPI() origins = [ "http://localhost", "http://localhost:3000", - "http://localhost:8080", + "*", ] app.add_middleware(