From 82de193b16e6fd52eb58e423033ed11c4d56d50a Mon Sep 17 00:00:00 2001 From: mstfyldz Date: Sun, 16 Aug 2026 18:04:38 +0300 Subject: [PATCH] feat: add api.telegram.org remotePatterns to next.config.ts --- next.config.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/next.config.ts b/next.config.ts index 68a6c64..eb510f1 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,19 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "api.telegram.org", + pathname: "/**", + }, + { + protocol: "https", + hostname: "images.unsplash.com", + }, + ], + }, }; export default nextConfig;