Skip to content

Commit

Permalink
Update app manifest to match with actual favicons (#2141)
Browse files Browse the repository at this point in the history
Wrong favicon declaration was causing a mismatch and, therefore, a console warning was being throw
  • Loading branch information
antgamdia committed Nov 4, 2020
1 parent 1c3d387 commit 0183fc9
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion dashboard/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,27 @@
"icons": [
{
"src": "favicon.ico",
"sizes": "192x192",
"sizes": "32x32",
"type": "image/x-icon"
},
{
"src": "favicon-16x16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "favicon-32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "favicon-128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "favicon-196x196.png",
"sizes": "196x196",
"type": "image/png"
}
],
Expand Down

0 comments on commit 0183fc9

Please sign in to comment.