Set favicon.ico's 'sizes' to 32x32
> sizes="any" for ICO file was replaced to sizes="32x32" to fix bug when Chrome downloaded both ICO and SVG files.
This commit is contained in:
parent
58c49957e4
commit
fee8aa0a3b
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ const { title } = Astro.props;
|
||||||
<link
|
<link
|
||||||
rel="icon"
|
rel="icon"
|
||||||
href="/favicon.ico"
|
href="/favicon.ico"
|
||||||
sizes="any"
|
sizes="32x32"
|
||||||
/>
|
/>
|
||||||
<link
|
<link
|
||||||
rel="icon"
|
rel="icon"
|
||||||
|
|
Reference in a new issue