img-compress-loader
v0.2.0
Published
Image compressor loader for webpack
Downloads
7
Readme
img-compress-loader
Image compress loader for webpack.
Support Images
Usage
webpack.config.js:
{
module: {
loaders: [
{
test: /\.(png|jpg|gif|woff|woff2|svg)(\?\w+)?$/,
loader: 'url-loader?name=images/[name].[ext]&limit=8192!img-compress-loader'
},
]
}
}
History
- [0.2.0]
- switch back to original
gifsicle
,jpegtran-bin
andoptipng-bin
.
- switch back to original
- [0.1.0]
- init version.
- [0.1.2]
- bugfix for dead loop img compress.
- [0.1.3]
- img compress lib install to node_modules locally.
- [0.1.5]
- move common dependencies to speed up install.