Skip to content

Commit

Permalink
Fixing webimage decoder import
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinius authored Jan 17, 2022
1 parent aebfad1 commit 7bab096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compression/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ addDecoder(7, () => import('./jpeg.js').then((m) => m.default));
addDecoder([8, 32946], () => import('./deflate.js').then((m) => m.default));
addDecoder(32773, () => import('./packbits.js').then((m) => m.default));
addDecoder(34887, () => import('./lerc.js').then((m) => m.default));
addDecoder(50001, () => import('./webimage').then((m) => m.default));
addDecoder(50001, () => import('./webimage.js').then((m) => m.default));

0 comments on commit 7bab096

Please sign in to comment.