From ad4a71d57e9a566d628361d9814fd58d3566ffc6 Mon Sep 17 00:00:00 2001 From: Michael Reuter Date: Mon, 14 Oct 2024 21:16:36 -0700 Subject: [PATCH] Try CORS again. --- src/lct_web/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lct_web/main.py b/src/lct_web/main.py index c5bb0b3..cae896e 100644 --- a/src/lct_web/main.py +++ b/src/lct_web/main.py @@ -28,6 +28,7 @@ app.add_middleware( CORSMiddleware, + allow_origins=["*"], allow_methods=["GET"], allow_headers=["Content-Type"], )