test with a cors fix

This commit is contained in:
c-d-p
2025-04-27 13:27:58 +02:00
parent eeb29ccc74
commit 12b3f10d4d
2 changed files with 1 additions and 4 deletions

View File

@@ -26,10 +26,7 @@ app.include_router(router)
app.add_middleware(
CORSMiddleware,
allow_origins=[
"https://maia.depaoli.id.au",
"http://localhost:8081",
],
allow_origins=["*"], # Temporarily allow all origins for testing
allow_methods=["*"],
allow_headers=["*"],
)