8.1.0 • Published 2 years ago

image-webpack-loader v8.1.0

Weekly downloads
278,582
License
MIT
Repository
github
Last release
2 years ago

Dependencies status devDependencies status Build status

image-webpack-loader

Image loader module for webpack

Minify PNG, JPEG, GIF, SVG and WEBP images with imagemin

Issues with the output should be reported on the imagemin issue tracker.

Install

$ npm install image-webpack-loader --save-dev

Install in container

node:12-buster

No additional preparations required. All dependencies will be compiled automatically.
Not recommended because of large image size (~1 GB).

node:12-buster-slim

Prepare script:

apt-get update
apt-get install -y --no-install-recommends autoconf automake g++ libpng-dev make

Recommended container image.

node:12-alpine

Prepare script:

apk add --no-cache autoconf automake file g++ libtool make nasm libpng-dev

Not recommended because of long build time.

Benchmark

Container distroPull timeBuild timeTotal time
node:12-buster42 seconds77 seconds119 seconds
node:12-buster-slim11 seconds103 seconds114 seconds
node:12-alpine8 seconds122 seconds130 seconds

libpng issues

Installing on some versions of OSX may raise errors with a missing libpng dependency:

Module build failed: Error: dyld: Library not loaded: /usr/local/opt/libpng/lib/libpng16.16.dylib

This can be remedied by installing the newest version of libpng with homebrew:

brew install libpng

Usage

Documentation: Using loaders

In your webpack.config.js, add the image-loader, chained after the file-loader:

rules: [{
  test: /\.(gif|png|jpe?g|svg)$/i,
  use: [
    'file-loader',
    {
      loader: 'image-webpack-loader',
      options: {
        bypassOnDebug: true, // webpack@1.x
        disable: true, // webpack@2.x and newer
      },
    },
  ],
}]

For each optimizer you wish to configure, specify the corresponding key in options:

rules: [{
  test: /\.(gif|png|jpe?g|svg)$/i,
  use: [
    'file-loader',
    {
      loader: 'image-webpack-loader',
      options: {
        mozjpeg: {
          progressive: true,
        },
        // optipng.enabled: false will disable optipng
        optipng: {
          enabled: false,
        },
        pngquant: {
          quality: [0.65, 0.90],
          speed: 4
        },
        gifsicle: {
          interlaced: false,
        },
        // the webp option will enable WEBP
        webp: {
          quality: 75
        }
      }
    },
  ],
}]

Comes bundled with the following optimizers, which are automatically enabled by default:

And optional optimizers:

  • webpCompress JPG & PNG images into WEBP

Each optimizers can be disabled by specifying optimizer.enabled: false, and optional ones can be enabled by simply putting them in the options

If you are using Webpack 1, take a look at the old docs (or consider upgrading).

Options

Loader options:

bypassOnDebug (all)

Type: boolean Default: false

Using this, no processing is done when webpack 'debug' mode is used and the loader acts as a regular file-loader. Use this to speed up initial and, to a lesser extent, subsequent compilations while developing or using webpack-dev-server. Normal builds are processed normally, outputting optimized files.

disable

Type: boolean Default false

Same functionality as bypassOnDebug option, but doesn't depend on webpack debug mode, which was deprecated in 2.x. Basically you want to use this option if you're running webpack@2.x or newer.

For optimizer options, an up-to-date and exhaustive list is available on each optimizer repository:

Inspiration

License

MIT (http://www.opensource.org/licenses/mit-license.php)

@sprucelabs/react-heartwood-componentscbs_newgrav-plugin-webpacker@igloo_cloud/shared-ui@tenjo/webpack-confighandywebpackct2tenjo-webpack-configwaiboc-react-widgetce-webpack-tempamp-webpack@leapux/gui-iconsstatamic-addon-webpackerecarx-build-toolmy-app-react-test-yapreact-best-table2@primal/webpack@primal/operator-webpackolivo-chatbot-widget@joseirrazabal/kitetsay-webpack-libout_going_callshao-basehao-excalibur@memoryai/frontend-configraspberrybar@stephane888/wbu-atomiqueuniversal-build-chaintealess-helpersteasim-staticsworklio-clicc-packclient-appwebpack-independentreact-simple-webpackreact-bootjsq1-login-clicesiump_yaoml_plugin@le-phare/webpack-config@everything-registry/sub-chunk-1903gn-dynamic-indexxyz-scaffoldingvue-music-playerwbu-atomiquewaya-builderwebpack-wizardwebpack-configlesswebpack-config-rentpathwebpack-angularity-solutionwebcubewebpack-spa-configwebpack-config-cawebpack-imgminiwebapp00001webpack_build_customwebpack_ejswebpack_htmlwagcontentwaiboc-widget-reactwildplatewindfurywolf-buildertest-package-pjtopic-components-info-appsthezivkovic-react-scriptstiresias-custom-webpacktesla-scriptstest-component-testtest-edt-clits-razzle-modificationsuba-scriptsui-sdk-bah@excitare/cli-config-next@frontal/files-plugin@futuregroup/webpack-custom-blockszjc-npm-test@fengcen-public/build-tools@gasparnd/ui-library@fev/fevvarie-bundlerumi-webpackunderdog-collietrs-page-clitry-mi-custom-webpack@infinitebrahmanuniverse/nolb-image-@happysouls/checkout-ui-reactsymphony-bdk-app-templatesyncano-gatsbysweetpacktc-reactui@interaktiv/dia-scriptsdbfs-strapi-adminpristine-appdev-depsqd-clisdevrobot_npm_serverrahreact-super-scriptsreferral-appreact-simple-webpack-hua
8.1.0

2 years ago

8.0.1

3 years ago

8.0.0

3 years ago

7.0.1

4 years ago

7.0.0

4 years ago

6.0.0

5 years ago

5.1.0

5 years ago

5.0.0

5 years ago

4.6.0

5 years ago

4.5.0

5 years ago

4.4.0

6 years ago

4.3.1

6 years ago

4.3.0

6 years ago

4.2.0

6 years ago

4.1.0

6 years ago

4.0.0

6 years ago

3.6.0

6 years ago

3.5.0

6 years ago

3.4.2

7 years ago

3.4.1

7 years ago

3.4.0

7 years ago

3.3.1

7 years ago

3.3.0

7 years ago

3.2.0

7 years ago

3.1.0

7 years ago

3.0.0

8 years ago

2.0.0

8 years ago

1.8.0

8 years ago

1.7.0

8 years ago

1.6.3

8 years ago

1.6.2

9 years ago

1.6.1

9 years ago

1.6.0

9 years ago

1.5.0

9 years ago

1.4.0

9 years ago

1.3.1

9 years ago

1.3.0

9 years ago

1.2.0

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.0.7

10 years ago

0.0.5

10 years ago