diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..82551c7 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,9 @@ +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;