feat: add api.telegram.org remotePatterns to next.config.ts

This commit is contained in:
mstfyldz
2026-08-16 18:04:38 +03:00
parent ef220e18c3
commit 82de193b16
+13
View File
@@ -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;