Manifest doesn’t have a maskable icon
Lighthouse maskable icon audit fails to add maskable icon support to your PWA
How to add maskable icon support to your PWA
- On manifest file add the purpose line
{
…
"icons": [
…
{
"src": "path/to/maskable_icon.png",
"sizes": "196x196",
"type": "image/png",
"purpose": "any maskable"
}
]
…
}
2. Build and publish the website
One thought on “Manifest doesn’t have a maskable icon”