Skip to content

Commit 15b0fb2

Browse files
v0.0.4
1 parent b0d6ee8 commit 15b0fb2

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
## Version History
1010

11+
### v0.0.4
12+
13+
- Added a fix for the 192x192 and 512x512 favicons.
14+
1115
### v0.0.3
1216

1317
- Added all favicon files and links.

routes/_app.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ export default function App({ Component }: PageProps) {
1515
<link
1616
rel="icon"
1717
type="image/png"
18-
href="favicon/favicon-96x96.png"
18+
href="/favicon/favicon-96x96.png"
1919
sizes="96x96"
2020
/>
21-
<link rel="icon" type="image/svg+xml" href="favicon/favicon.svg" />
22-
<link rel="shortcut icon" href="favicon/favicon.ico" />
21+
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
22+
<link rel="shortcut icon" href="/favicon/favicon.ico" />
2323
<link
2424
rel="apple-touch-icon"
2525
sizes="180x180"
26-
href="favicon/apple-touch-icon.png"
26+
href="/favicon/apple-touch-icon.png"
2727
/>
2828
<meta name="apple-mobile-web-app-title" content="Lunchbox" />
29-
<link rel="manifest" href="favicon/site.webmanifest" />
29+
<link rel="manifest" href="/site.webmanifest" />
3030
</head>
3131
<Body>
3232
<Component />

static/favicon/site.webmanifest renamed to static/site.webmanifest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"short_name": "lunchbox",
44
"icons": [
55
{
6-
"src": "/web-app-manifest-192x192.png",
6+
"src": "/favicon/web-app-manifest-192x192.png",
77
"sizes": "192x192",
88
"type": "image/png",
99
"purpose": "maskable"
1010
},
1111
{
12-
"src": "/web-app-manifest-512x512.png",
12+
"src": "/favicon/web-app-manifest-512x512.png",
1313
"sizes": "512x512",
1414
"type": "image/png",
1515
"purpose": "maskable"
@@ -18,4 +18,4 @@
1818
"theme_color": "#241f26",
1919
"background_color": "#241f26",
2020
"display": "standalone"
21-
}
21+
}

0 commit comments

Comments
 (0)