12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
// next.config.ts
|
|
|
|
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
qualities: [75, 80, 85, 90, 95, 100], // Add 90 here!
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|