Files
doormile_react/next.config.ts
2026-06-04 15:49:51 +05:30

12 lines
208 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "export",
images: {
unoptimized: true,
formats: ["image/avif", "image/webp"],
},
};
export default nextConfig;