Skip to content

Commit

Permalink
Add a title to RSS link tag 🪧.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarty committed Jan 27, 2025
1 parent 83ffab5 commit 7bbda7b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,12 @@ const isProduction = import.meta.env.PROD
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
// <link rel="manifest" href="/m.webmanifest">
{ rel: 'manifest', href: '/m.webmanifest' },
{ rel: 'alternate', href: '/rss.xml', type: 'application/rss+xml' },
{
rel: 'alternate',
href: '/rss.xml',
type: 'application/rss+xml',
title: t('siteMetadata.title'),
},
],
}}
openGraph={{
Expand Down

0 comments on commit 7bbda7b

Please sign in to comment.