Skip to content

Commit

Permalink
fix: web manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
gaboesquivel committed Jul 25, 2023
1 parent 9867bc3 commit b30a543
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
24 changes: 21 additions & 3 deletions icons/app.webmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"name": "Contracts UI",
"short_name": "ContractsUI",
"display": "standalone",
"background_color": "#1a1d1f",
"description": "Substrate Contracts UI.",
"icons": [
{ "src": "icon-192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "icon-512.png", "type": "image/png", "sizes": "512x512" }
{
"src": "icon-32x32.png",
"type": "image/png",
"sizes": "32x32"
},
{
"src": "icon-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "icon-512x512.png",
"type": "image/png",
"sizes": "512x512"
}
]
}
}
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<title>Substrate Contracts UI</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="icons/icon-32x32.png" sizes="any" />
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png" />
<link rel="manifest" href="icons/app.webmanifest" />
<link rel="icon" href="/icons/icon-32x32.png" sizes="any" />
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
<link rel="manifest" href="/icons/app.webmanifest" />
</head>

<body>
Expand Down

0 comments on commit b30a543

Please sign in to comment.