Fix bug 66973 - Web: Client: added custom favicon display by default

This commit is contained in:
Dmitry Sychugov 2024-03-19 15:43:47 +05:00
parent 8f9b3f6967
commit 681e8b9d47

View File

@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en" translate="no">
<head>
<meta charset="utf-8" />
@ -13,7 +13,12 @@
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->
<link id="favicon" rel="shortcut icon" sizes="any" href="favicon.ico" />
<link id="favicon-icon" rel="icon" href="favicon.ico" />
<link
id="favicon-icon"
rel="icon"
href="/storage/whitelabel/root/favicon.png"
onerror="this.onerror=null;this.href='favicon.ico';"
/>
<link rel="manifest" href="/manifest.json" />
<!-- Tell the browser it's a PWA -->
@ -38,8 +43,16 @@
content="app-id=com.onlyoffice.documents"
/>
<link rel="apple-touch-icon" href="favicon.ico" />
<link rel="android-touch-icon" href="favicon.ico" />
<link
rel="apple-touch-icon"
href="/storage/whitelabel/root/favicon.png"
onerror="this.onerror=null;this.href='favicon.ico';"
/>
<link
rel="android-touch-icon"
href="/storage/whitelabel/root/favicon.png"
onerror="this.onerror=null;this.href='favicon.ico';"
/>
<!-- <%= htmlWebpackPlugin.options.custom %> -->