feat: add .png icons for safari
All checks were successful
container-scan / Container Scan (pull_request) Successful in 2m51s
docker-build / docker (pull_request) Successful in 4m26s

This commit is contained in:
micha 2025-05-22 14:38:30 +02:00
parent c2a074f734
commit 08a83ba3c5
5 changed files with 19 additions and 38 deletions

View file

@ -19,8 +19,14 @@ export default function RootLayout({
<link
rel='icon'
type='image/png'
href='/favicon-96x96.png'
sizes='96x96'
href='/favicon-dark.png'
media='(prefers-color-scheme: dark)'
/>
<link
rel='icon'
type='image/png'
href='/favicon-light.png'
media='(prefers-color-scheme: light)'
/>
<link
rel='icon'

View file

@ -2,6 +2,6 @@ export { auth as middleware } from '@/auth';
export const config = {
matcher: [
'/((?!api|_next/static|_next/image|favicon.ico|favicon-96x96.png|favicon.svg|site.webmanifest|web-app-manifest-192x192.png|web-app-manifest-512x512.png|favicon-dark.svg|favicon-light.svg).*)',
'/((?!api|_next/static|_next/image|favicon.ico|favicon-96x96.png|favicon.svg|site.webmanifest|web-app-manifest-192x192.png|web-app-manifest-512x512.png|favicon-dark.svg|favicon-light.svg|favicon-light.png|favicon-dark.png).*)',
],
};