We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d9413d commit 5150c6cCopy full SHA for 5150c6c
ssr/render.ts
@@ -263,7 +263,7 @@ export default function render(
263
? "noindex, nofollow"
264
: "index, follow";
265
const robotsMeta = `<meta name="robots" content="${robotsContent}">`;
266
- const rssLink = `<link rel="alternate" type="application/rss+xml" title="MDN Blog RSS Feed" href="/${DEFAULT_LOCALE}/blog/rss.xml" hreflang="en" />`;
+ const rssLink = `<link rel="alternate" type="application/rss+xml" title="MDN Blog RSS Feed" href="${BASE_URL}/${DEFAULT_LOCALE}/blog/rss.xml" hreflang="en" />`;
267
const ssr_data = [...translations, ...webfontTags, rssLink, robotsMeta];
268
let html = buildHtml;
269
html = html.replace(
0 commit comments