Add favicon
@ -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 }] : []),
|
||||
];
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB |
BIN
web/public/favicon/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
web/public/favicon/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 164 KiB |
BIN
web/public/favicon/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
web/public/favicon/favicon-16x16.png
Normal file
After Width: | Height: | Size: 799 B |
BIN
web/public/favicon/favicon-32x32.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
web/public/favicon/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
19
web/public/favicon/site.webmanifest
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "",
|
||||
"short_name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/favicon/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/favicon/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|