Add favicon

This commit is contained in:
april
2024-01-03 10:09:30 -06:00
parent f428074c27
commit 6137dde7df
9 changed files with 37 additions and 0 deletions

View File

@@ -31,6 +31,24 @@ import { IconRocket } from "@tabler/icons-react";
import { AuthProvider } from "./util/auth";
export const links: LinksFunction = () => [
{
rel: "apple-touch-icon",
href: "/favicon/apple-touch-icon.png",
sizes: "180x180",
},
{
rel: "icon",
href: "/favicon/favicon-32x32.png",
type: "image/png",
sizes: "32x32",
},
{
rel: "icon",
href: "/favicon/favicon-16x1166.png",
type: "image/png",
sizes: "16x16",
},
{ rel: "manifest", href: "/favicon/site.webmanifest" },
...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
];