PWA manifest fixes for extra auth, fixes #4611

This commit is contained in:
zadam 2024-02-14 07:21:31 +01:00
parent 5abfb5c08a
commit 67cb926233
3 changed files with 5 additions and 10 deletions

View File

@ -9,14 +9,9 @@
"start_url": "/", "start_url": "/",
"icons": [ "icons": [
{ {
"src": "/assets/vX/images/app-icons/ios/apple-touch-icon.png", "src": "favicon.ico",
"sizes": "180x180", "sizes": "180x180 512x512",
"type": "image/png" "type": "image/x-icon"
},
{
"src": "/assets/vX/images/app-icons/png/512x512.png",
"sizes": "512x512",
"type": "image/png"
} }
] ]
} }

View File

@ -3,7 +3,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico"> <link rel="shortcut icon" href="favicon.ico">
<link rel="manifest" href="manifest.webmanifest"> <link rel="manifest" crossorigin="use-credentials" href="manifest.webmanifest">
<title>Trilium Notes</title> <title>Trilium Notes</title>
</head> </head>
<body class="desktop heading-style-<%= headingStyle %>"> <body class="desktop heading-style-<%= headingStyle %>">

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#fff"> <meta name="theme-color" content="#fff">
<title>Trilium Notes</title> <title>Trilium Notes</title>
<link rel="manifest" href="manifest.webmanifest"> <link rel="manifest" crossorigin="use-credentials" href="manifest.webmanifest">
<style> <style>
.lds-roller { .lds-roller {