12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
formats: ["image/avif", "image/webp"],
|
|
deviceSizes: [360, 640, 768, 1024, 1280, 1536, 1920],
|
|
minimumCacheTTL: 2678400,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|