Skip to content

Commit 7bab096

Browse files
Fixing webimage decoder import
1 parent aebfad1 commit 7bab096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compression/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ addDecoder(7, () => import('./jpeg.js').then((m) => m.default));
2626
addDecoder([8, 32946], () => import('./deflate.js').then((m) => m.default));
2727
addDecoder(32773, () => import('./packbits.js').then((m) => m.default));
2828
addDecoder(34887, () => import('./lerc.js').then((m) => m.default));
29-
addDecoder(50001, () => import('./webimage').then((m) => m.default));
29+
addDecoder(50001, () => import('./webimage.js').then((m) => m.default));

0 commit comments

Comments
 (0)