Skip to content

Commit

Permalink
fix: favicons (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaciejGarncarski committed Oct 26, 2022
1 parent 8b1dd55 commit 2a370ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ class MyDocument extends Document {
type="font/woff2"
crossOrigin=""
/>
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png" />
<link rel="manifest" href="./site.webmanifest" />
<link rel="alternate" title="rss feed" type="application/rss+xml" href="/rss.xml" />

Expand Down

1 comment on commit 2a370ff

@vercel
Copy link

@vercel vercel bot commented on 2a370ff Oct 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.