Files
Mugcloud/next.config.ts
2026-05-07 13:06:15 +03:30

12 lines
199 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
images: {
qualities: [75, 100],
},
};
export default nextConfig;