From a6c86f6de766831462afb4da1e02ce0cb1d556bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eahan=20Hasret?= Date: Tue, 21 Oct 2025 23:13:22 +0300 Subject: [PATCH] Image Fix --- next.config.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..aeb9320 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,14 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'images.pexels.com', + }, + ], + }, }; export default nextConfig;