fix: format previous commit
This commit is contained in:
parent
e5359ea4d3
commit
c2a074f734
3 changed files with 16 additions and 4 deletions
|
@ -18,4 +18,4 @@
|
||||||
"theme_color": "#ffffff",
|
"theme_color": "#ffffff",
|
||||||
"background_color": "#ffffff",
|
"background_color": "#ffffff",
|
||||||
"display": "standalone"
|
"display": "standalone"
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,8 +22,18 @@ export default function RootLayout({
|
||||||
href='/favicon-96x96.png'
|
href='/favicon-96x96.png'
|
||||||
sizes='96x96'
|
sizes='96x96'
|
||||||
/>
|
/>
|
||||||
<link rel='icon' type='image/svg+xml' href='/favicon-dark.svg' media='(prefers-color-scheme: dark)'/>
|
<link
|
||||||
<link rel='icon' type='image/svg+xml' href='/favicon-light.svg' media='(prefers-color-scheme: light)'/>
|
rel='icon'
|
||||||
|
type='image/svg+xml'
|
||||||
|
href='/favicon-dark.svg'
|
||||||
|
media='(prefers-color-scheme: dark)'
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel='icon'
|
||||||
|
type='image/svg+xml'
|
||||||
|
href='/favicon-light.svg'
|
||||||
|
media='(prefers-color-scheme: light)'
|
||||||
|
/>
|
||||||
<link rel='shortcut icon' href='/favicon.ico' />
|
<link rel='shortcut icon' href='/favicon.ico' />
|
||||||
<link
|
<link
|
||||||
rel='apple-touch-icon'
|
rel='apple-touch-icon'
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
export { auth as middleware } from '@/auth';
|
export { auth as middleware } from '@/auth';
|
||||||
|
|
||||||
export const config = {
|
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).*)'],
|
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).*)',
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue