mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Add apng support
This commit is contained in:
parent
44b027e8b2
commit
bccb0ec008
2 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue