From bccb0ec008ce27469eaa804e377aa7bc6e6549eb Mon Sep 17 00:00:00 2001 From: Ategon Date: Tue, 11 Feb 2025 03:05:15 -0500 Subject: [PATCH] Add apng support --- src/components/editor/EditorMenuBar.tsx | 1 + src/components/editor/index.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/editor/EditorMenuBar.tsx b/src/components/editor/EditorMenuBar.tsx index 960aef4..c03cf5e 100644 --- a/src/components/editor/EditorMenuBar.tsx +++ b/src/components/editor/EditorMenuBar.tsx @@ -69,6 +69,7 @@ export default function EditorMenuBar({ editor }: EditorMenuProps) { const allowedTypes = [ "image/jpeg", // JPEG images "image/png", // PNG images + "image/apng", // APNG images "image/gif", // GIF images "image/webp", // WebP images "image/svg+xml", // SVG images diff --git a/src/components/editor/index.tsx b/src/components/editor/index.tsx index 14abeca..19659e9 100644 --- a/src/components/editor/index.tsx +++ b/src/components/editor/index.tsx @@ -129,6 +129,7 @@ export default function Editor({ const allowedTypes = [ "image/jpeg", // JPEG images "image/png", // PNG images + "image/apng", // APNG images "image/gif", // GIF images "image/webp", // WebP images "image/svg+xml", // SVG images