import type { NextConfig } from "next"; const nextConfig: NextConfig = { async headers() { return [ { source: "/(.*)", headers: [ { key: "Content-Security-Policy", value: "frame-src 'self' https://player.twitch.tv https://embed.twitch.tv; frame-ancestors 'self';", }, { key: "X-Frame-Options", value: "SAMEORIGIN", }, ], }, ]; }, }; export default nextConfig;