feat(frontend: adjust favicons and webapp manifest
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 228 B |
|
Before Width: | Height: | Size: 473 B |
|
Before Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 848 B |
@@ -15,6 +15,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="apple-mobile-web-app-title" content="AIOStreams" />
|
||||
</head>
|
||||
<body className={inter.className}>{children}</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
@@ -3,18 +3,20 @@
|
||||
"short_name": "AIO",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"src": "/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"src": "/web-app-manifest-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"start_url": ".",
|
||||
"background_color": "black",
|
||||
"background_color": "#000000",
|
||||
"display": "standalone"
|
||||
}
|
||||
|
||||
@@ -143,11 +143,11 @@ app.get(
|
||||
'/favicon.ico',
|
||||
'/logo.png',
|
||||
'/manifest.json',
|
||||
'/android-chrome-192x192.png',
|
||||
'/android-chrome-512x512.png',
|
||||
'/apple-touch-icon.png',
|
||||
'/favicon-16x16.png',
|
||||
'/favicon-32x32.png',
|
||||
'/web-app-manifest-192x192.png',
|
||||
'/web-app-manifest-512x512.png',
|
||||
'/apple-icon.png',
|
||||
'/icon0.svg',
|
||||
'/icon1.png',
|
||||
],
|
||||
staticRateLimiter,
|
||||
(req, res, next) => {
|
||||
|
||||