From d04e1513d14958f3bad1273d6055b0579d7b4313 Mon Sep 17 00:00:00 2001 From: Rishi Panthee <github@rishipanthee.com> Date: Sat, 18 May 2024 19:11:55 -0500 Subject: [PATCH] Allow SVG images through --- src/proxy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proxy.ts b/src/proxy.ts index e392217..506762a 100644 --- a/src/proxy.ts +++ b/src/proxy.ts @@ -27,6 +27,7 @@ const AcceptedContentTypes = [ 'image/jpeg', 'image/png', 'image/webp', + 'image/svg+xml' ] interface NeedleResponse extends http.IncomingMessage { -- GitLab