This commit is contained in:
eric
2026-01-29 12:16:54 -06:00
parent ce8a1a28d6
commit 555ddc299e

View File

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