diff options
| author | Fuwn <[email protected]> | 2024-01-10 21:17:49 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-10 21:17:49 -0800 |
| commit | fafc6e1aeb5031feaaffcac9720064a6b3a78c4c (patch) | |
| tree | dbcaac35071acc0ef805555358bc38d0f6e38cb0 /static | |
| parent | fix(html): use root for favicons (diff) | |
| download | due.moe-fafc6e1aeb5031feaaffcac9720064a6b3a78c4c.tar.xz due.moe-fafc6e1aeb5031feaaffcac9720064a6b3a78c4c.zip | |
fix(manifest): mark all icons as maskable any
Diffstat (limited to 'static')
| -rw-r--r-- | static/manifest.json | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/static/manifest.json b/static/manifest.json index 3303032e..3c5a2144 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -6,27 +6,32 @@ { "src": "https://due.moe/favicon-196x196.png", "type": "image/png", - "sizes": "196x196" + "sizes": "196x196", + "purpose": "maskable any" }, { "src": "https://due.moe/favicon-128.png", "type": "image/png", - "sizes": "128x128" + "sizes": "128x128", + "purpose": "maskable any" }, { "src": "https://due.moe/favicon-96x96.png", "type": "image/png", - "sizes": "96x96" + "sizes": "96x96", + "purpose": "maskable any" }, { "src": "https://due.moe/favicon-32x32.png", "type": "image/png", - "sizes": "32x32" + "sizes": "32x32", + "purpose": "maskable any" }, { "src": "https://due.moe/favicon-16x16.png", "type": "image/png", - "sizes": "16x16" + "sizes": "16x16", + "purpose": "maskable any" } ], "background_color": "#060506", |