I am using image-webpack-loader to compress images. It works fine with png images, but it's almost not compressing jpeg images.
Example 1:
- Original PNG file: 124 kb
- Loader result: 25 kb
- Tinypng result: 23 kb
Example 2:
- Original JPG file: 567 kb
- Loader result: 563 kb
- Tinypng result: 146 kb
Image loader config: 'image-webpack?{bypassOnDebug: true, progressive: true, optimizationLevel: 1, interlaced: true, pngquant:{quality: 100, nofs: true}}'
How to get close to tinypng result with jpg images?