import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", images: { formats: ["image/avif", "image/webp"], minimumCacheTTL: 60 * 60 * 24 * 30, }, }; export default nextConfig;