/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, output: 'standalone', images: { remotePatterns: [ { protocol: 'https', hostname: '**', }, ], }, async headers() { return [ { source: '/(.*)', headers: [ { key: 'X-Content-Type-Options', value: 'nosniff' }, { key: 'X-Frame-Options', value: 'DENY' }, { key: 'X-XSS-Protection', value: '1; mode=block' }, { key: 'Referrer-Policy', value: 'strict-origin-when-cross-origin' }, { key: 'Permissions-Policy', value: 'camera=(), microphone=(), geolocation=(self)' }, ], }, ]; }, }; module.exports = nextConfig;