From 56ca3e293fc60fa49cddf55d14972a5b1aa375f9 Mon Sep 17 00:00:00 2001 From: Tom Martensen Date: Tue, 21 Nov 2023 09:14:47 +0100 Subject: [PATCH] fix(ROX-20938): make PWA manifest accessible without authentication (#1071) --- server/server.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/server.go b/server/server.go index da8c9ab6f..ceb455b40 100644 --- a/server/server.go +++ b/server/server.go @@ -167,7 +167,8 @@ func serveApplicationResources(dir string, oidc auth.OidcAuth) http.Handler { prefix: true, }, { - path: "/manifest.json", + path: "/manifest.json", + anonymous: true, }, { path: "/favicon.ico",