Skip to content

Commit 7db5142

Browse files
authored
Merge pull request #60 from hyp3rd/feat/market-scoped
fix(pwa): emit a static apple-touch-icon so iOS shows the home-screen icon
2 parents e464bf4 + 6cf3e21 commit 7db5142

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

app/layout.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ export const metadata: Metadata = {
7575
icons: {
7676
icon: [{ url: "/logo-mark.svg", type: "image/svg+xml" }],
7777
shortcut: "/logo-mark.svg",
78-
apple: "/apple-touch-icon.png",
78+
// Explicit size per Apple's spec — emits
79+
// `<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">`.
80+
apple: [{ url: "/apple-touch-icon.png", sizes: "180x180" }],
7981
},
8082
openGraph: {
8183
type: "website",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "maqro",
3-
"version": "0.6.20",
3+
"version": "0.6.21",
44
"private": true,
55
"license": "Attribution-NonCommercial-NoDerivatives 4.0 International",
66
"workspaces": [

0 commit comments

Comments
 (0)