Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

Commit 4a2e20b

Browse files
committed
jpegXl 圧縮してないじゃん!
1 parent 9364907 commit 4a2e20b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workspaces/server/src/image-converters/jpegXlConverter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ export const jpegXlConverter = {
2121

2222
const JPEGXL = await import('@jsquash/jxl');
2323
return JPEGXL.encode(data, {
24-
effort: 0,
25-
quality: 100,
24+
effort: 4,
25+
quality: 80,
2626
}).then((data) => new Uint8Array(data));
2727
},
2828
};

0 commit comments

Comments
 (0)