aethex-live-v2/next.config.ts
2026-03-21 08:26:59 +00:00

9 lines
282 B
TypeScript

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;