feat: optimize favicon loading across the application using Next.js image component for better performance and caching

This commit is contained in:
Usman Baig
2026-02-22 19:21:28 +01:00
parent 156d9986df
commit 94fb7c60e0
6 changed files with 30 additions and 4 deletions

View File

@@ -12,6 +12,15 @@ const nextConfig: NextConfig = {
output: 'standalone',
// * Privacy-first: Disable analytics and telemetry
productionBrowserSourceMaps: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'www.google.com',
pathname: '/s2/favicons**',
},
],
},
async redirects() {
return [
{