From d315332537a803785ce4e1acc7af105ed3035242 Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 24 Nov 2025 10:33:19 +0530 Subject: [PATCH] chore: Add Cross-Origin-Resource-Policy and Cross-Origin-Embedder-Policy headers to next.config.ts. --- next.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/next.config.ts b/next.config.ts index d94b8b29..34701734 100644 --- a/next.config.ts +++ b/next.config.ts @@ -179,6 +179,14 @@ const nextConfig: NextConfig = { key: 'X-Build-ID', value: buildId, }, + { + key: 'Cross-Origin-Resource-Policy', + value: 'cross-origin', + }, + { + key: 'Cross-Origin-Embedder-Policy', + value: 'unsafe-none', + }, ], },