From 81674c4aa72a7e4b34b1c4ed327e387792622037 Mon Sep 17 00:00:00 2001 From: Claw AI Date: Tue, 31 Mar 2026 19:45:03 +0000 Subject: [PATCH] fix: add remote image pattern for next.config.mjs --- next.config.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 1fc00a8..e73a910 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -2,6 +2,15 @@ const nextConfig = { /* config options here */ reactCompiler: true, + images: { + remotePatterns: [ + { + protocol: 'http', + hostname: '45.93.137.91', + pathname: '/api/Pictures/**', + }, + ], + }, // basePath: "/sweetHome", // assetPrefix: "/sweetHome/", };