From 2146382b11897f6a6718c3f3006bd62ff88d2130 Mon Sep 17 00:00:00 2001 From: Ravindra Singh Rathor Date: Thu, 2 Jul 2026 12:56:51 +0530 Subject: [PATCH 1/2] fix(iframe-embed): till all users have not migrated to latest sdk, allow anyone to access plugins --- public/_headers | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/_headers b/public/_headers index fb6f21b..39ae775 100644 --- a/public/_headers +++ b/public/_headers @@ -1,6 +1,5 @@ /* - X-Frame-Options: DENY X-Content-Type-Options: nosniff Referrer-Policy: strict-origin-when-cross-origin Permissions-Policy: accelerometer=(), camera=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=() - Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; font-src 'self' data:; connect-src 'self' https:; media-src 'self' https:; frame-src https:; worker-src 'self' blob:; + Content-Security-Policy: default-src 'self' https: http:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https: http:; style-src 'self' 'unsafe-inline'; img-src 'self' data: https: http:; font-src 'self' data:; connect-src 'self' https: http: wss: ws:; media-src 'self' https: http: blob:; frame-src https: http:; frame-ancestors *; worker-src 'self' blob:; From 3f8271e5a0317513100ef95515ac65a8bac7ff4d Mon Sep 17 00:00:00 2001 From: Ravindra Singh Rathor Date: Thu, 2 Jul 2026 13:06:04 +0530 Subject: [PATCH 2/2] fix(cors): allowing all origins temporarily --- public/_headers | 1 + 1 file changed, 1 insertion(+) diff --git a/public/_headers b/public/_headers index 39ae775..335a77b 100644 --- a/public/_headers +++ b/public/_headers @@ -3,3 +3,4 @@ Referrer-Policy: strict-origin-when-cross-origin Permissions-Policy: accelerometer=(), camera=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=() Content-Security-Policy: default-src 'self' https: http:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https: http:; style-src 'self' 'unsafe-inline'; img-src 'self' data: https: http:; font-src 'self' data:; connect-src 'self' https: http: wss: ws:; media-src 'self' https: http: blob:; frame-src https: http:; frame-ancestors *; worker-src 'self' blob:; + Access-Control-Allow-Origin: * \ No newline at end of file