Files
ember-market-frontend/next.config.mjs
2025-03-17 20:21:10 +01:00

18 lines
366 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "api.telegram.org",
},
{
protocol: "https",
hostname: "telegram.org",
}
],
},
};
export default nextConfig;