From f5f16749865072be1a0cec420fcbb4298840ad66 Mon Sep 17 00:00:00 2001 From: Oneric <1668471+TheOneric@users.noreply.github.com> Date: Fri, 16 Feb 2024 22:41:41 +0100 Subject: [PATCH] Add MIME type for APNG (#81) It is assigned in https://www.iana.org/assignments/media-types/image/apng --- lib/mime.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/mime.ex b/lib/mime.ex index d9fd5c5..d75fe74 100644 --- a/lib/mime.ex +++ b/lib/mime.ex @@ -92,6 +92,7 @@ defmodule MIME do "font/ttf" => ["ttf"], "font/woff" => ["woff"], "font/woff2" => ["woff2"], + "image/apng" => ["apng"], "image/avif" => ["avif"], "image/bmp" => ["bmp"], "image/gif" => ["gif"],