Allow using different apple-touch-icon

This commit is contained in:
Benedek Kozma 2024-09-18 17:38:37 +02:00 committed by GitHub
parent 581828d49a
commit bcb2407b02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -363,7 +363,7 @@ function Home({ initialSettings }) {
{settings.favicon ? ( {settings.favicon ? (
<> <>
<link rel="icon" href={settings.favicon} /> <link rel="icon" href={settings.favicon} />
<link rel="apple-touch-icon" sizes="180x180" href={settings.favicon} /> <link rel="apple-touch-icon" sizes="180x180" href={settings.appleTouchIcon ?? settings.favicon} />
</> </>
) : ( ) : (
<> <>