From cb76af36644bdd1757036d7915e13f98a3259c13 Mon Sep 17 00:00:00 2001 From: Kames Geraghty Date: Tue, 5 Sep 2023 13:52:24 -0400 Subject: [PATCH] fix: maskable icons (#166) --- public/manifest.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index 5c28ed1b..bdbc0a2b 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -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" } ] }