diff --git a/next.config.mjs b/next.config.mjs index b44b4ba8..31723fdc 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -54,23 +54,23 @@ const nextConfig = { }, ]; }, - async headers() { - return [ - { - source: '/(.*)', - headers: [ - { - key: 'Content-Security-Policy', - value: cspHeader.replace(/\n/g, ''), - }, - { - key: 'X-Frame-Options', - value: 'DENY', - }, - ], - }, - ]; - }, + // async headers() { + // return [ + // { + // source: '/(.*)', + // headers: [ + // { + // key: 'Content-Security-Policy', + // value: cspHeader.replace(/\n/g, ''), + // }, + // { + // key: 'X-Frame-Options', + // value: 'DENY', + // }, + // ], + // }, + // ]; + // }, }; export default withBundleAnalyzer(nextConfig);