added manifest for AdaptiveDashboard

This commit is contained in:
Carter 2025-04-22 11:06:51 -06:00
parent b9544d6a7b
commit 62e3a164d9
11 changed files with 2235 additions and 0 deletions

View file

@ -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;