Skip to content

Commit

Permalink
fix: maskable icons (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamescg authored Sep 5, 2023
1 parent d6e34bc commit cb76af3
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,31 @@
"start_url": "/",
"name": "TurboETH",
"short_name": "TurboETH",
"description": "Web3 App Template built using Next.js, RainbowKit, SIWE, Disco, and more!",
"description": "Full-Stack Web3 Application",
"icons": [
{
"src": "/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
}
]
}

1 comment on commit cb76af3

@vercel
Copy link

@vercel vercel bot commented on cb76af3 Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.