import type { NextConfig } from 'next'; const nextConfig: NextConfig = { async headers() { return [{ source: '/(.*)', headers: [{ key: 'X-Frame-Options', value: 'SAMEORIGIN' }] }]; }, images: { domains: ['img.youtube.com', 'i.ytimg.com'] }, }; export default nextConfig;