This commit is contained in:
Flavius 2025-12-16 21:09:33 +00:00 committed by GitHub
commit 1eeecac684
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ origins = [
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)