You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 20, 2025. It is now read-only.
constnextSafe=require('next-safe');constisDev=process.env.NODE_ENV!=='production';module.exports={asyncheaders(){return[{source: '/:path*',headers: nextSafe({
isDev,contentSecurityPolicy: {'frame-ancestors': 'https://stackblitz.com',// next-safe ensures that both directives have always the same value.// It prefers report-to over report-uri if both are set.// this doesn't make sense, for report-uri, a URL is expected.// For report-to it is a group name of a Reporting API configuration.// It requires a Report-To header for configuration// see https://developers.google.com/web/updates/2018/09/reportingapi'report-uri': 'https://example.com/csp-report-uri','report-to': 'default',},}),},];},};