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;