webp-loader-next

1.0.5 • Public • Published

webp-loader

Build Status

WebP image loader & converter loader for Webpack.

Install

npm install webp-loader --save-dev

Usage

Here is the example of using webp-loader along with common file-loader:

loaders: [
  {
    test: /\.(jpe?g|png)$/i,
    loaders: [
      'file-loader',
      'webp-loader'
    ]
  }
]

Unfortunately, if you wish to pass an options for internal imagemin-webp you should pass a options in JSON form:

loaders: [
  {
    test: /\.(jpe?g|png)$/i,
    loaders: [
      'file-loader',
      'webp-loader?{quality: 13}'
    ]
  }
]

Options

For all possible options please visit "API" section of the official imagemin-webp README.

Inspiration

webp-loader is heavily inspired by tcoopman/image-webpack-loader.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i webp-loader-next

Weekly Downloads

20

Version

1.0.5

License

MIT

Unpacked Size

7.83 kB

Total Files

4

Last publish

Collaborators

  • tofandel