/** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", images: { formats: ["image/webp"], deviceSizes: [640, 828, 1080, 1200], imageSizes: [16, 32, 48, 64, 96, 128, 256, 384], minimumCacheTTL: 31536000, // 1 year — images are immutable, filename changes on update }, }; export default nextConfig;