fix(web): use correct favicon sizes (#2446)
* fix(web): use correct favicon sizes Signed-off-by: martin <martin.labat92@gmail.com> * fix: format Signed-off-by: martin <martin.labat92@gmail.com> --------- Signed-off-by: martin <martin.labat92@gmail.com>pull/2454/head
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 826 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
@ -0,0 +1,11 @@
|
||||
<script lang="ts">
|
||||
import IconAppleTouch180 from '$lib/assets/favicon/apple-icon-180.png';
|
||||
import Icon16 from '$lib/assets/favicon/favicon-16.png';
|
||||
import Icon32 from '$lib/assets/favicon/favicon-32.png';
|
||||
import Icon96 from '$lib/assets/favicon/favicon-96.png';
|
||||
</script>
|
||||
|
||||
<link rel="icon" type="image/png" sizes="16x16" href={Icon16} />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href={Icon32} />
|
||||
<link rel="icon" type="image/png" sizes="96x96" href={Icon96} />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href={IconAppleTouch180} />
|
||||