mirror of
https://github.com/cloudmaker97/DurstRechner.git
synced 2025-12-05 23:48:39 +00:00
Favicon hinzugefügt
This commit is contained in:
parent
cefdd8dc9e
commit
cd1d3f250b
9 changed files with 21 additions and 3 deletions
BIN
favicon/android-chrome-192x192.png
Normal file
BIN
favicon/android-chrome-192x192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.1 KiB |
BIN
favicon/android-chrome-512x512.png
Normal file
BIN
favicon/android-chrome-512x512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
BIN
favicon/apple-touch-icon.png
Normal file
BIN
favicon/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.4 KiB |
BIN
favicon/favicon-16x16.png
Normal file
BIN
favicon/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 527 B |
BIN
favicon/favicon-32x32.png
Normal file
BIN
favicon/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 966 B |
BIN
favicon/favicon.ico
Normal file
BIN
favicon/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
|
|
@ -6,6 +6,9 @@
|
|||
<meta name="theme-color" content="#2196f3"/>
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="stylesheet" href="stylesheet.css">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
|
||||
<title>Der Durstrechner</title>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,20 @@
|
|||
{
|
||||
"name": "Produkt-Rechner",
|
||||
"short_name": "Rechner",
|
||||
"name": "Der Durstrechner",
|
||||
"short_name": "Durstrechner",
|
||||
"start_url": "./",
|
||||
"display": "standalone",
|
||||
"background_color": "#ffffff",
|
||||
"theme_color": "#2196f3",
|
||||
"icons": [
|
||||
|
||||
{
|
||||
"src": "favicon/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "favicon/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ const FILES_TO_CACHE = [
|
|||
'/manifest.json',
|
||||
'/service-worker.js',
|
||||
'/stylesheet.css',
|
||||
'/favicon/android-chrome-192x192.png',
|
||||
'/favicon/android-chrome-512x512.png',
|
||||
'/favicon/apple-touch-icon.png',
|
||||
'/favicon/favicon-16x16.png',
|
||||
'/favicon/favicon-32x32.png',
|
||||
'/favicon/favicon.ico',
|
||||
];
|
||||
|
||||
self.addEventListener('install', event => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue