Nuxt plugin to minify your images
npm install nuxt-imagemin 
Nuxt module to minify your images.
Works with: png, jpeg, gif, and svg.
```
npm install --save nuxt-imagemin
Add nuxt-imagemin to your nuxt.config.js:
`js`
{
modules: [
'nuxt-imagemin',
]
}
1. Put your images inside assets folder, for example: logo.png
2. Then create an element to render it: 
nuxt
3. When you will bundle your app for production, will minify your image assets
Read more about how assets work.
We use imagemin plugin for webpack internally.imagemin
It has a lot of options.
We pass any provided options into the itself:
`js``
{
modules: [
['nuxt-imagemin', {
optipng: { optimizationLevel: 5 },
gifsicle: { optimizationLevel: 2 }
},
]
}
MIT.