Skip to content

Commit

Permalink
fix(icon): fixed double icon link
Browse files Browse the repository at this point in the history
  • Loading branch information
RSickenberg committed Jul 9, 2024
1 parent f214943 commit 777473f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ const {title} = Astro.props;
},
}}
extend={{
link: [{ rel: 'icon', href: '/favicon.ico' }],
link: [{ rel: 'icon', type: 'image/ico', href: '/favicon.ico' }],
}}
/>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon" type="image/ico" href="/favicon.ico"/>
<meta name="generator" content={Astro.generator}/>
<meta name="theme-color" content="#00000" media="(prefers-color-scheme: dark)"/>
<meta name="theme-color" content="#FFFFF" media="(prefers-color-scheme: light)"/>
Expand Down

0 comments on commit 777473f

Please sign in to comment.