Fix endpoint compatibility
This commit is contained in:
@@ -35,7 +35,7 @@ def create_application() -> FastAPI:
|
||||
application.add_middleware(
|
||||
CORSMiddleware,
|
||||
allow_origins=["*"],
|
||||
allow_credentials=True,
|
||||
allow_credentials=False, # Changed to False for better compat with allow_origins=["*"]
|
||||
allow_methods=["*"],
|
||||
allow_headers=["*"],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user