import type { NextConfig } from "next" const nextConfig: NextConfig = { poweredByHeader: false, reactStrictMode: true, swcMinify: true, output: "standalone", images: { minimumCacheTTL: 60, formats: ["image/webp"], }, experimental: { optimizeCss: true, serverComponentsExternalPackages: [], }, } export default nextConfig