/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, output: "standalone", compress: true, poweredByHeader: false, images: { formats: ["image/avif", "image/webp"], minimumCacheTTL: 60, }, experimental: { optimizePackageImports: ["lucide-react"], }, }; module.exports = nextConfig;