diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:51:58 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:51:58 -0600 |
commit | ae10884d87a6e1fa95aa175ed0a1f0e6897b84e9 (patch) | |
tree | 621c0f9c29785a0224ce6af4bb968541f2daacec /server/main.py | |
parent | 21da372d9087bad768aef54ca8267dafa30e947c (diff) |
CORS fix
Diffstat (limited to 'server/main.py')
-rw-r--r-- | server/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main.py b/server/main.py index 874c727..d5ceb20 100644 --- a/server/main.py +++ b/server/main.py @@ -10,7 +10,7 @@ app.include_router(bids.router, prefix="/bids") app.add_middleware( CORSMiddleware, allow_origins=["*"], - allow_credentials=True, + allow_credentials=False, allow_methods=["*"], allow_headers=["*"], ) |