Convert image uploads into webp files unless it's a gif (closes #11)

This commit is contained in:
Oliver 2026-02-03 18:20:43 -07:00
parent 4a2c40397f
commit 73601c579c
4 changed files with 54 additions and 8 deletions

3
module/config.mjs Normal file
View file

@ -0,0 +1,3 @@
export const config = CONFIG.ImageTagger = foundry.utils.deepSeal({
WEBP_IGNORE: [`image/gif`],
});