An open API service indexing awesome lists of open source software.

https://github.com/lwd-technology/react-app-rewire-imagemin-plugin

Add imagemin-webpack-plugin to a react-app-rewired config.
https://github.com/lwd-technology/react-app-rewire-imagemin-plugin

imagemin imagemin-webpack-plugin react-app-rewired webpack

Last synced: about 1 year ago
JSON representation

Add imagemin-webpack-plugin to a react-app-rewired config.

Awesome Lists containing this project

README

          

# react-app-rewire-imagemin-plugin

Add [`imagemin-webpack-plugin`](https://github.com/Klathmon/imagemin-webpack-plugin) to a [`react-app-rewired`](https://github.com/timarney/react-app-rewired) config.

```js
const rewireImageminPlugin = require('react-app-rewire-imagemin-plugin')

// Optimize images in the build
config = rewireImageminPlugin(config, env, {
disable: process.env.NODE_ENV !== 'production',
pngquant: {
quality: '95-100'
}
})
```