From 2d493f5d5fc4e2e1faca4cbb3b00a4a6b2ac0862 Mon Sep 17 00:00:00 2001 From: "nogafam.es Admin" Date: Sun, 10 Oct 2021 15:56:22 +0200 Subject: [PATCH] Fix PWA not working on firefox because of wrong icon sizes --- public/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index edcd1d4a5..6637c81a0 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -9,12 +9,12 @@ { "src": "img/favicon.png", "type": "image/png", - "sizes": "153x152" + "sizes": "256x256" }, { "src": "img/pixelfed-icon-color.svg", "type": "image/svg", - "sizes": "50x50" + "sizes": "128x128" } ] }