fix: update matcher regex for web app manifest and favicon
Some checks failed
container-scan / Container Scan (pull_request) Failing after 31s
docker-build / docker (pull_request) Failing after 3m11s

This commit is contained in:
micha 2025-05-22 15:25:46 +02:00
parent 5bcb16a9b5
commit 76f75f0b57

View file

@ -2,6 +2,6 @@ export { auth as middleware } from '@/auth';
export const config = {
matcher: [
'/((?!api|_next/static|_next/image|site.webmanifest|web-app-manifest-192x192.png|web-app-manifest-512x512.png|favicon-(?:dark|light)?\.(?:png|svg)).*)',
'/((?!api|_next/static|_next/image|site.webmanifest|web-app-manifest-(?:(192x192|512x512)*\.png|favicon-(?:dark|light)?\.(?:png|svg)).*)',
],
};
};