Files
southernmonsarysupply/next.config.ts
2026-03-10 18:31:23 +01:00

12 lines
229 B
TypeScript

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