From dd611b17adf165b65f9077774de48fdd306e6f10 Mon Sep 17 00:00:00 2001 From: Dean Sallinen Date: Sun, 17 Sep 2023 23:00:01 -0700 Subject: [PATCH] Add start URL to manifest.json Adds the last criteria to make the application an installable PWA on mobile. --- static/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/manifest.json b/static/manifest.json index cf5d31b..8e7d559 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -5,6 +5,7 @@ "background_color": "#1f1f1f", "description": "An alternative private front-end to Reddit", "theme_color": "#1f1f1f", + "start_url": "/", "icons": [ { "src": "logo.png", @@ -20,4 +21,4 @@ "sizes": "32x32" } ] -} \ No newline at end of file +}