fix(manifest): replace site.webmanifest with manifest.json for improved structure
This commit is contained in:
parent
7e2566b493
commit
3aa5083fdc
3 changed files with 26 additions and 3 deletions
3
dist/index.html
vendored
3
dist/index.html
vendored
|
|
@ -61,7 +61,7 @@
|
|||
<link rel="icon" href="/favicon.ico" sizes="any">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
|
|
@ -430,7 +430,6 @@
|
|||
<!-- Verification Tags -->
|
||||
<meta name="google-site-verification" content="yh6OZ9qZhOAVRs3tkFAwwBYIb3BKrveBy6C0QEVHpw0" />
|
||||
<meta name="msvalidate.01" content="EAEFE7EF6DC835E9B8C0C88394E0F32F" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
|
|||
25
dist/manifest.json
vendored
Normal file
25
dist/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "Debrid Compare",
|
||||
"short_name": "DSC",
|
||||
"start_url": "https://debridcompare.xyz",
|
||||
"display": "standalone",
|
||||
"description": "Compare leading debrid / multi-hoster services for pricing, host coverage, policies & tools.",
|
||||
"lang": "en",
|
||||
"dir": "auto",
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"orientation": "any",
|
||||
"icons": [
|
||||
{
|
||||
"src": "images/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
|
||||
}
|
||||
1
dist/site.webmanifest
vendored
1
dist/site.webmanifest
vendored
|
|
@ -1 +0,0 @@
|
|||
{"name":"Debrid Compare","short_name":"DC","icons":[{"src":"images/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"images/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
||||
Loading…
Reference in a new issue