added manifest for AdaptiveDashboard
This commit is contained in:
parent
b9544d6a7b
commit
62e3a164d9
11 changed files with 2235 additions and 0 deletions
|
|
@ -28,6 +28,8 @@ function App() {
|
|||
// Set favicon
|
||||
const faviconDocument = document.getElementById("favicon-link") as HTMLLinkElement;
|
||||
const faviconPath = `/${whiteLabel.name.replace(/\s/g, "")}/favicon.ico`;
|
||||
console.log("Favicon Document: ", faviconDocument)
|
||||
console.log("Favicon Path: ", faviconPath)
|
||||
fetch(faviconPath).then(response => {
|
||||
if (response.ok && faviconDocument) {
|
||||
faviconDocument.href = faviconPath;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue