From 85ee63af43794bcb8becb38c32f39d4a5b6a49f7 Mon Sep 17 00:00:00 2001
From: DanielV <30294327+kriminalrat@users.noreply.github.com>
Date: Fri, 11 Oct 2019 14:02:06 +0300
Subject: [PATCH] [Frontend] Fix invalid start_url in manifest file. (#879)

As far as I know the invalid start_url format breaks only the "Add to Home Screen" functionality, so it's a really minor change, fixing a nice functionality.
---
 frontend/public/manifest.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json
index 684fbb40..33efca79 100644
--- a/frontend/public/manifest.json
+++ b/frontend/public/manifest.json
@@ -13,7 +13,7 @@
       "type": "image/png"
     }
   ],
-  "start_url": "./",
+  "start_url": "/",
   "display": "standalone",
   "background_color": "#ffffff",
   "theme_color": "#455a64"