AV beat banners point at images on broadcastbeat.com and on advertising.relevantmediaproperties.com. Without these in the Next.js remotePatterns allowlist, /_next/image proxy returns 400 and the page falls back to article-placeholder-v2.svg. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
47 lines
910 B
JavaScript
47 lines
910 B
JavaScript
/**
|
|
* Image Hosts Configuration (add your image hosts here)
|
|
*/
|
|
|
|
export const imageHosts = [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.unsplash.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.pexels.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.pixabay.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '*.supabase.co',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'supabase.onsethost.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '*.supabase.in',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'www.avbeat.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'broadcastbeat.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'www.broadcastbeat.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'advertising.relevantmediaproperties.com',
|
|
},
|
|
];
|