12 lines
229 B
TypeScript
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;
|