Fix bookmark shortcut for custom icons

`shortcut` was missing from the favicon header setup when using custom icons.
This commit is contained in:
Bruno Henriques 2024-03-11 23:37:27 +00:00 committed by GitHub
parent 247f73f0db
commit 43c92fd1c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -376,7 +376,7 @@ function Home({ initialSettings }) {
{settings.base && <base href={settings.base} />}
{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} />
</>
) : (