From 82feb69e12709c20ad58df72cb08f1d42de9bb2a 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