9 lines
282 B
TypeScript
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;
|