Add APNG to supported PNG file extensions

This commit is contained in:
Evan Hahn 2023-08-04 09:46:44 -05:00
parent ff4eb82a39
commit e9dd9aec85
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
export const SUPPORTED_FILE_TYPES = [
{
name: "PNG",
extensions: [".png"],
extensions: [".png", ".apng"],
mimeType: "image/png",
route: "/png",
mimeSniffBytePattern: [0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A],