Skip to content

Commit

Permalink
try absolute favicon for prod
Browse files Browse the repository at this point in the history
  • Loading branch information
chargome committed Aug 16, 2024
1 parent 475378e commit a485660
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file removed apps/changelog/src/app/favicon.ico
Binary file not shown.
4 changes: 3 additions & 1 deletion apps/changelog/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export const metadata: Metadata = {
title: 'Home',
icons: {
icon:
process.env.NODE_ENV === 'production' ? '/favicon.ico' : '/favicon_localhost.png',
process.env.NODE_ENV === 'production'
? 'https://changelog.sentry.dev/favicon.ico'
: '/favicon_localhost.png',
},
openGraph: {
images: '/img/hero.png',
Expand Down

0 comments on commit a485660

Please sign in to comment.