image2svg-loader

Webpack loader for transforming image to svg (with embedded base64 image tag)

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
image2svg-loader
400.10.06 years ago6 years agoMinified + gzip package size for image2svg-loader in KB

Readme

image2svg-loader
Webpack loader for transforming image to svg (with embedded base64 image tag)
Normaly combined with svg-sprite-loader, which has a bug that can not handle PNG.

Usage:

{
  test: /\.(png)$/,
  use: [
    {
      loader: 'svg-sprite-loader',
      options: {
        symbolId: 'icon-[name]',
      },
    },
    'image2svg-loader',
  ],
  include: [
    /icons/,
  ],
},