What the issue means
A missing X-Frame-Options header may allow other sites to frame your pages if CSP frame-ancestors is not configured.
Security fix guide
A missing X-Frame-Options header may allow other sites to frame your pages if CSP frame-ancestors is not configured.
Run Full Website Security ScanA missing X-Frame-Options header may allow other sites to frame your pages if CSP frame-ancestors is not configured.
Frame protections help reduce clickjacking risk on pages with authenticated or sensitive actions.
Inspect response headers for X-Frame-Options or a CSP frame-ancestors directive.
Use DENY or SAMEORIGIN, or prefer CSP frame-ancestors for modern, flexible frame control.
add_header X-Frame-Options "SAMEORIGIN" always;Header always set X-Frame-Options "SAMEORIGIN"headers: async () => [{ source: "/(.*)", headers: [{ key: "X-Frame-Options", value: "SAMEORIGIN" }] }]Add X-Frame-Options or CSP frame-ancestors with a response header rule.