Files
entscheidomat/next.config.ts
2026-08-05 20:17:01 +02:00

25 lines
469 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
formats: ["image/avif", "image/webp"],
minimumCacheTTL: 2678400,
},
async headers() {
return [
{
source: "/images/guides/:path*",
headers: [
{
key: "Cache-Control",
value: "public, max-age=31536000, immutable",
},
],
},
];
},
};
export default nextConfig;