From f8ceca7ba1db61b417ca2fa72f0d337fc91360ec Mon Sep 17 00:00:00 2001 From: Vitaly Date: Mon, 28 Aug 2023 06:38:11 +0300 Subject: [PATCH] format manifest: specify orientation --- assets/manifest.json | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/assets/manifest.json b/assets/manifest.json index ec18d3f5..e6e2068e 100644 --- a/assets/manifest.json +++ b/assets/manifest.json @@ -1,13 +1,17 @@ { "name": "Prismarine Web Client", "short_name": "Prismarine Web Client", - "scope": "/", - "start_url": "/", - "icons": [{ - "src": "favicon.png", - "sizes": "512x512" - }], + "scope": "./", + "start_url": "./", + "icons": [ + { + "src": "favicon.png", + "sizes": "512x512" + } + ], "background_color": "#349474", "theme_color": "#349474", + "lang": "en-US", + "orientation": "landscape", "display": "standalone" -} \ No newline at end of file +}