Fix bookmark shortcut for custom icons
`shortcut` was missing from the favicon header setup when using custom icons.
This commit is contained in:
parent
247f73f0db
commit
43c92fd1c9
@ -376,7 +376,7 @@ function Home({ initialSettings }) {
|
|||||||
{settings.base && <base href={settings.base} />}
|
{settings.base && <base href={settings.base} />}
|
||||||
{settings.favicon ? (
|
{settings.favicon ? (
|
||||||
<>
|
<>
|
||||||
<link rel="icon" href={settings.favicon} />
|
<link rel="shortcut icon" href={settings.favicon} />
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href={settings.favicon} />
|
<link rel="apple-touch-icon" sizes="180x180" href={settings.favicon} />
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user