/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', reactStrictMode: true, typescript: { ignoreBuildErrors: true, }, async headers() { return [ { source: '/:path*', headers: [ { key: 'X-Robots-Tag', value: 'noindex, nofollow, noarchive, nosnippet' }, { key: 'X-Frame-Options', value: 'DENY' }, { key: 'X-Content-Type-Options', value: 'nosniff' }, { key: 'Referrer-Policy', value: 'strict-origin-when-cross-origin' }, { key: 'Content-Security-Policy', value: "frame-ancestors 'none'" }, { key: 'Permissions-Policy', value: 'camera=(), microphone=(), geolocation=()' }, ], }, ] }, } module.exports = nextConfig