From fafc6e1aeb5031feaaffcac9720064a6b3a78c4c Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 10 Jan 2024 21:17:49 -0800 Subject: fix(manifest): mark all icons as maskable any --- static/manifest.json | 15 ++++++++++----- 1 file 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", -- cgit v1.2.3