From da58262afba15c3407983e70475c89051c58479a Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Wed, 25 Mar 2026 20:46:54 +0500 Subject: [PATCH] cors: remove XFO header --- cors-proxy/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cors-proxy/src/index.ts b/cors-proxy/src/index.ts index 9e801a6..129e7eb 100644 --- a/cors-proxy/src/index.ts +++ b/cors-proxy/src/index.ts @@ -219,7 +219,7 @@ const server = Bun.serve({ headers: { "Content-Type": "text/html; charset=utf-8", // "Content-Security-Policy": "frame-ancestors *", - "X-Frame-Options": "ALLOWALL", + // "X-Frame-Options": "ALLOWALL", }, }); }