From ba389042c258a0136ef85b6a1ebcd207e1899236 Mon Sep 17 00:00:00 2001 From: Claw AI Date: Tue, 31 Mar 2026 22:38:00 +0000 Subject: [PATCH] chore: add nip.io domain with SSL for HTTPS notifications --- next.config.mjs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index e73a910..01f3311 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -5,9 +5,14 @@ const nextConfig = { images: { remotePatterns: [ { - protocol: 'http', - hostname: '45.93.137.91', - pathname: '/api/Pictures/**', + protocol: "https", + hostname: "45.93.137.91.nip.io", + pathname: "/api/Pictures/**", + }, + { + protocol: "http", + hostname: "45.93.137.91", + pathname: "/api/Pictures/**", }, ], },