From 061b6435ce3657db77c156488223171388ce8e2b Mon Sep 17 00:00:00 2001 From: haniyeroozmand <147385975+haniyeroozmand@users.noreply.github.com> Date: Thu, 7 May 2026 13:06:15 +0330 Subject: [PATCH] image quality config --- next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.ts b/next.config.ts index 66e1566..4049b02 100644 --- a/next.config.ts +++ b/next.config.ts @@ -3,6 +3,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ reactCompiler: true, + images: { + qualities: [75, 100], + }, }; export default nextConfig;