import type { NextConfig } from "next" const nextConfig: NextConfig = { eslint: { ignoreDuringBuilds: false, }, images: { remotePatterns: [ { protocol: "https", hostname: "ui-avatars.com", }, ], }, async headers() { return [ { source: "/(.*)", headers: [ { key: "X-Content-Type-Options", value: "nosniff" }, { key: "X-Frame-Options", value: "DENY" }, { key: "Referrer-Policy", value: "strict-origin-when-cross-origin" }, { key: "Permissions-Policy", value: "camera=(), microphone=(), geolocation=()" }, ...(process.env.NODE_ENV === "production" ? [{ key: "Strict-Transport-Security", value: "max-age=31536000; includeSubDomains" }] : []), ], }, ] }, } export default nextConfig