1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-05-18 15:04:27 -04:00

add maskable icons to manifest

https://web.dev/maskable-icon-audit/?utm_source=lighthouse&utm_medium=cli
This commit is contained in:
2021-06-12 09:25:45 -04:00
parent a2445d236d
commit 8eda53296f
4 changed files with 18 additions and 4 deletions
+16 -2
View File
@@ -5,12 +5,26 @@
{
"src": "{{ (resources.Get "img/android-chrome-512x512.png").Permalink | safeJS }}",
"sizes": "512x512",
"type": "image/png"
"type": "image/png",
"purpose": "any"
},
{
"src": "{{ (resources.Get "img/android-chrome-192x192.png").Permalink | safeJS }}",
"sizes": "192x192",
"type": "image/png"
"type": "image/png",
"purpose": "any"
},
{
"src": "{{ (resources.Get "img/maskable-512x512.png").Permalink | safeJS }}",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "{{ (resources.Get "img/maskable-192x192.png").Permalink | safeJS }}",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
}
],
"start_url": "{{ .Site.BaseURL | safeJS }}",