tcoopman / image-webpack-loader

Image loader module for webpack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

safari and ios App img can not load, but Android App is ok

oimmc opened this issue · comments

commented

ios 13.3
options: {
mozjpeg: {
progressive: true,
quality: 65
},
optipng: {
enabled: false
},
pngquant: {
quality: [0.65, 0.9],
speed: 4
},
gifsicle: {
interlaced: false
},
webp: {
quality: 75
}
}

commented

This is a known issue, you can solve it by remove the webp option.

  options: {
    mozjpeg: {
      progressive: true,
      quality: 65
    },
    optipng: {
      enabled: false
    },
    pngquant: {
      quality: [0.65, 0.9],
      speed: 4
    },
    gifsicle: {
      interlaced: false
    }
  }