diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-11-22 17:58:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 17:58:29 +0000 |
commit | 378107492194a5f408747790015c4ca1d624302b (patch) | |
tree | e12e121265d081b49c50d7cd0cc5f71c5f477bf7 /src/lib/constants.ts | |
parent | 76ca72cf727e926101ec60eb232f0797e6584b49 (diff) | |
download | voidsky-378107492194a5f408747790015c4ca1d624302b.tar.zst |
Add gif support to web (#6433)
* add gif support to web * rm set dimensions * rm effect from preview * rm log * rm use of {cause: error} * fix lint
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index cd9183c95..ee066d919 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -154,6 +154,7 @@ export const SUPPORTED_MIME_TYPES = [ 'video/mpeg', 'video/webm', 'video/quicktime', + 'image/gif', ] as const export type SupportedMimeTypes = (typeof SUPPORTED_MIME_TYPES)[number] |