webp-loader-next
v1.0.5
Published
WebP image loader & converter for Webpack
Downloads
22
Readme
webp-loader
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.