项目作者: massada

项目描述 :
Optimize image loader
高级语言: JavaScript
项目地址: git://github.com/massada/optimize-image-webpack-loader.git
创建时间: 2018-08-29T23:56:07Z
项目社区:https://github.com/massada/optimize-image-webpack-loader

开源协议:MIT License

下载


optimize-image-webpack-loader

A image loader module for webpack.

Requirements

This module requires a minimum of Node v6.9.0 and works with Webpack v3 and Webpack v4.

Getting Started

npm

  1. $ npm install optimize-image-webpack-loader

yarn

  1. $ yarn add optimize-image-webpack-loader

Options

name

Type: String
Default: '[name].[hash:8].[ext]'

Specifies a custom image filename template for the target file(s) using the
query parameter name.

sharp

Type: Object
Default: {}

Overwrites sharp options.

See (https://github.com/lovell/sharp/blob/master/lib/constructor.js) for
defaults.

widths

Type: Number|Array
Default: undefined

Specifies the output image(s) width, defaults to loaded image width.

Usage

Example 1

  1. const config = {
  2. ...
  3. module: {
  4. rules: [
  5. {
  6. test: /\.(png|jpe?g|gif|tiff)$/,
  7. loader: 'optimize-image-webpack-loader',
  8. options: {
  9. name: 'images/[name].[hash:8].[ext]',
  10. sharp: {
  11. jpegQuality: 85,
  12. jpegProgressive: true,
  13. jpegChromaSubsampling: '4:2:0'
  14. },
  15. widths: [2000, 1000],
  16. },
  17. },
  18. ],
  19. },
  20. ...
  21. };

Example 2

  1. const url = require('./image.jpg?{widths:[500,250]}');

Example 4

  1. const url = require('./image.jpg?{widths:125}');

Changelog

See Changelog.

License

Copyright (c) 2018 José Massada jose.massada@gmail.com

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
‘Software’), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.