From d25340a857f5a5e124f0545725af9550173c5611 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 25 Apr 2026 06:57:53 +0000 Subject: [PATCH] fix: disable COOP and Origin-Agent-Cluster headers to fix blank page on HTTP Agent-Logs-Url: https://github.com/whyour/qinglong/sessions/71ccc655-4ea0-4735-9e7c-9230000e08d5 Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> --- back/app.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/back/app.ts b/back/app.ts index fc95a72f..0db4745c 100644 --- a/back/app.ts +++ b/back/app.ts @@ -151,6 +151,8 @@ class Application { private setupMiddlewares() { this.app.use(helmet({ contentSecurityPolicy: false, + crossOriginOpenerPolicy: false, + originAgentCluster: false, })); this.app.use(cors(config.cors)); this.app.use(compression());