refac: "any maskable" is discouraged

This commit is contained in:
Timothy J. Baek 2024-08-15 13:24:47 +02:00
parent afe1f13c5b
commit ba370438b2

View File

@ -2264,7 +2264,20 @@ async def get_manifest_json():
"display": "standalone", "display": "standalone",
"background_color": "#343541", "background_color": "#343541",
"orientation": "portrait-primary", "orientation": "portrait-primary",
"icons": [{"src": "/static/logo.png", "type": "image/png", "sizes": "500x500", "purpose": "any maskable"}], "icons": [
{
"src": "/static/logo.png",
"type": "image/png",
"sizes": "500x500",
"purpose": "any",
},
{
"src": "/static/logo.png",
"type": "image/png",
"sizes": "500x500",
"purpose": "maskable",
},
],
} }