import type { NextConfig } from 'next'; const nextConfig: NextConfig = { output: 'standalone', async headers() { return [ { source: '/:path*', headers: [ { key: 'X-Content-Type-Options', value: 'nosniff' }, { key: 'Referrer-Policy', value: 'same-origin' }, { key: 'X-Frame-Options', value: 'SAMEORIGIN' }, { key: 'Permissions-Policy', value: 'camera=(self), microphone=()' }, ], }, ]; }, }; export default nextConfig;