Enable PWA's when setting BaseURL

This commit is contained in:
Deluan
2020-10-01 12:04:38 -04:00
parent cf8756b14b
commit 5b167031d2
2 changed files with 3 additions and 4 deletions
-1
View File
@@ -10,7 +10,6 @@
<link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="%PUBLIC_URL%/android-chrome-192x192.png"> <link rel="icon" type="image/png" sizes="192x192" href="%PUBLIC_URL%/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png"> <link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="mask-icon" href="%PUBLIC_URL%/safari-pinned-tab.svg" color="#5b5fd5"> <link rel="mask-icon" href="%PUBLIC_URL%/safari-pinned-tab.svg" color="#5b5fd5">
<meta name="msapplication-TileColor" content="#da532c"> <meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff"> <meta name="theme-color" content="#ffffff">
+3 -3
View File
@@ -4,17 +4,17 @@
"description": "Navidrome, an open source web-based music collection server and streamer", "description": "Navidrome, an open source web-based music collection server and streamer",
"categories": ["music", "entertainment"], "categories": ["music", "entertainment"],
"display": "standalone", "display": "standalone",
"start_url": "/app/", "start_url": "./",
"background_color": "white", "background_color": "white",
"theme_color": "blue", "theme_color": "blue",
"icons": [ "icons": [
{ {
"src": "/app/android-chrome-192x192.png", "src": "./android-chrome-192x192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, },
{ {
"src": "/app/android-chrome-512x512.png", "src": "./android-chrome-512x512.png",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/png"
} }