import type { NextConfig } from "next"; const s3Host = process.env.S3_ENDPOINT ? new URL(process.env.S3_ENDPOINT).hostname : ""; const securityHeaders = [ { key: "Strict-Transport-Security", value: "max-age=63072000; includeSubDomains; preload" }, { key: "X-Frame-Options", value: "SAMEORIGIN" }, { key: "X-Content-Type-Options", value: "nosniff" }, { key: "Referrer-Policy", value: "strict-origin-when-cross-origin" }, { key: "Permissions-Policy", value: "camera=(), microphone=(), geolocation=()" }, { key: "Content-Security-Policy", value: [ "default-src 'self'", "img-src 'self' data: blob: https:", "font-src 'self' data:", "style-src 'self' 'unsafe-inline'", "script-src 'self' 'unsafe-inline' 'unsafe-eval'", "connect-src 'self' https://*.clerk.accounts.dev https://api.clerk.com", "frame-ancestors 'self'", ].join("; "), }, ]; const nextConfig: NextConfig = { output: "standalone", poweredByHeader: false, compress: true, images: { remotePatterns: s3Host ? [{ protocol: "https", hostname: s3Host }] : [], }, async headers() { return [ { source: "/:path*", headers: securityHeaders, }, ]; }, }; export default nextConfig;