Skip to content

Webpack plugin which converts images to the WebP format while also keeping the original files.

License

Notifications You must be signed in to change notification settings

Mrlilili/imagemin-webp-webpack-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

imagemin-webp-webpack-plugin

Webpack plugin which converts images to the WebP format while also keeping the original files.

It uses imagemin and imagemin-webp under the hood.

Motivation

Although WebP images are not currently supported in all browsers, they are at least 25% smaller than PNG's or JPEG's. So, certain users can get a much better experience.

Check the support tables on Can I use

Installation

$ npm install imagemin-webp-webpack-plugin --save-dev

Usage

In order to use this plugin, add it to your webpack config.

const ImageminWebpWebpackPlugin= require("imagemin-webp-webpack-plugin");

module.exports = {
    plugins: [new ImageminWebpWebpackPlugin()]
};

⚠ Keep in mind that plugin order matters, so usually you'd want to put it last.

API

new ImageminWebpWebpackPlugin( [settings] );

settings

Type: Object : {config: Array, detailedLogs: boolean, strict: boolean}

Default:

{
  config: [{
    test: /\.(jpe?g|png)/,
    options: {
      quality:  75
    }
  }],
  detailedLogs: false,
  strict: true
}

config

Type Array<Object: {test, options} >

The main config of the plugin which controls how different file types are converted. Each item in the array is an object with 2 properties:

  • test - a RegExp selecting just certain images
  • options -the converting options for the images that pass the above RegExp

⚠ The options object is actually the same one from the imagemin-webp plugin so check their documentation for the available settings.

detailedLogs

Type: boolean
Default: false

By default the plugin will print

  1. the total number of megabytes saved by the webp images compared to the original ones
  2. the number of images that failed being converted

This options tells the plugin to also log the size difference per converted image and the names of the images that failed conversion.

strict

Type: boolean
Default: true

By default the webpack build will fail if any of the images that match your RegExps fail the conversion.

This option tells the plugin to not crash the build and keep going :)


Made with ❤ by Pava

About

Webpack plugin which converts images to the WebP format while also keeping the original files.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%