Skip to content

Commit

Permalink
feat(DEV-15): add maskable property in manifest.json
Browse files Browse the repository at this point in the history
  • Loading branch information
hhimanshu committed Jul 13, 2021
1 parent f2bfa26 commit 11d036d
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,44 @@
{
"src": "/icon_x48.png",
"sizes": "48x48",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon_x72.png",
"sizes": "72x72",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon_x96.png",
"sizes": "96x96",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon_x128.png",
"sizes": "128x128",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon_x192.png",
"sizes": "192x192",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon_x384.png",
"sizes": "384x384",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon_x512.png",
"sizes": "512x512",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
}
]
}

0 comments on commit 11d036d

Please sign in to comment.