From 1fa42df4c1921e4f79f28af2a52ae6676986ce95 Mon Sep 17 00:00:00 2001 From: matafokka Date: Mon, 31 Jan 2022 19:21:49 +0300 Subject: [PATCH] Fixes for PWA Still not sure why icon on a splash screen is blurry, maybe because of custom DPI on my device. --- manifest.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index de45e0d2..decb2e04 100644 --- a/manifest.json +++ b/manifest.json @@ -2,26 +2,26 @@ "name": "SynthFlight", "short_name": "SynthFlight", "display": "standalone", - "start_url": "/index.html", + "start_url": "./", "background_color": "#191919", "theme_color": "#191919", "icons": [ { - "src": "/img/logo.ico", + "src": "img/logo.ico", "sizes": "128x128", "type": "image/x-icon", "purpose": "any maskable" }, { - "src": "/img/logo.png", + "src": "img/logo.png", "type": "image/png", "sizes": "512x512", "purpose": "any maskable" }, { - "src": "/img/logo.svg", + "src": "img/logo.svg", "type": "image/svg", - "sizes": "144x144, 512x512, any", + "sizes": "48x48 96x96 128x128 144x144 192x192 240x240 256x256 288x288 336x336 384x384 512x512 1024x1024 2048x2048 any", "purpose": "any maskable" } ]