Scope blog to UP Parivaar tag via GHOST_BLOG_TAG; allow http Ghost images

This commit is contained in:
2026-07-23 21:09:22 +05:30
parent 5e457f4f39
commit 52a8e486b9
3 changed files with 34 additions and 6 deletions
+7 -1
View File
@@ -13,7 +13,13 @@ const nextConfig = {
images: {
remotePatterns: [
{ protocol: "https", hostname: "images.unsplash.com" },
...(ghostHost ? [{ protocol: "https", hostname: ghostHost }] : []),
// Ghost may serve feature images over either http or https, so allow both.
...(ghostHost
? [
{ protocol: "https", hostname: ghostHost },
{ protocol: "http", hostname: ghostHost },
]
: []),
],
},
};