Guest User

Untitled

a guest
Dec 13th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. module.exports = {
  2. chainWebpack: config => {
  3. const imgRule = config.module.rule('images')
  4. imgRule.use('file-loader')
  5. .loader('image-webpack-loader')
  6. .tap(options => {
  7. const ret = options || {}
  8. ret.pngquant = {
  9. quality: '65-90',
  10. speed: 4
  11. }
  12. return ret;
  13. })
  14. }
  15. }
Add Comment
Please, Sign In to add comment