From c9013249ebf0e2ba985d9c183da89463bbc4add8 Mon Sep 17 00:00:00 2001 From: "Ryan Salazar (via Claude)" Date: Fri, 12 Jun 2026 02:52:42 +0000 Subject: [PATCH] image-hosts: allow broadcastbeat.com + advertising.RMP 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) --- image-hosts.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/image-hosts.config.js b/image-hosts.config.js index d999664..0c9d0ed 100644 --- a/image-hosts.config.js +++ b/image-hosts.config.js @@ -31,4 +31,16 @@ export const imageHosts = [ protocol: 'https', hostname: 'www.avbeat.com', }, + { + protocol: 'https', + hostname: 'broadcastbeat.com', + }, + { + protocol: 'https', + hostname: 'www.broadcastbeat.com', + }, + { + protocol: 'https', + hostname: 'advertising.relevantmediaproperties.com', + }, ];