mirror of https://github.com/Lissy93/dashy.git
🔀 Merge pull request #1678 from m42cel/master
[FIX] Add missing 16x16 favicon and fix 32x32 and 64x64 favicon resolution
This commit is contained in:
commit
0bb22d0c52
|
@ -9,6 +9,7 @@
|
|||
<!-- Favicon, App Icon -->
|
||||
<link rel="icon" type="image/png" sizes="64x64" href="<%= BASE_URL %>/web-icons/favicon-64x64.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="web-icons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="web-icons/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" href="/favicon.ico" />
|
||||
<link rel="stylesheet" type="text/css" href="/loading-screen.css" />
|
||||
<!-- Default Page Title -->
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 794 B |
Binary file not shown.
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.3 KiB |
|
@ -320,6 +320,7 @@ module.exports = {
|
|||
iconPaths: {
|
||||
favicon64: './web-icons/favicon-64x64.png',
|
||||
favicon32: './web-icons/favicon-32x32.png',
|
||||
favicon16: './web-icons/favicon-16x16.png',
|
||||
maskIcon: './web-icons/dashy-logo.png',
|
||||
msTileImage: './web-icons/dashy-logo.png',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue