diff --git a/api/extensions/ext_fastopenapi.py b/api/extensions/ext_fastopenapi.py index 5f98aa7b67..e6c1bc6bee 100644 --- a/api/extensions/ext_fastopenapi.py +++ b/api/extensions/ext_fastopenapi.py @@ -36,7 +36,7 @@ def init_app(app: DifyApp) -> None: router.include_router(console_router, prefix="/console/api") CORS( app, - resources={r"/console/api/*": {"origins": dify_config.CONSOLE_CORS_ALLOW_ORIGINS}}, + resources={r"/console/api/.*": {"origins": dify_config.CONSOLE_CORS_ALLOW_ORIGINS}}, supports_credentials=True, allow_headers=list(AUTHENTICATED_HEADERS), methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"],