1.9.2 • Published 4 years ago

@constgen/neutrino-svg-loader v1.9.2

Weekly downloads
19
License
GPL-3.0
Repository
github
Last release
4 years ago

@constgen/neutrino-svg-loader

npm npm

Neutrino middleware for SVG files.

Features

  • Automatically exclude .svg extension from image rule if present
  • Enable usage of query parameters in SVG paths for compilation time image processing (e.g. image.svg?fill=currentColor) with svg-transform-loader
  • Encode SVGs to DataURI *without- encoding to Base64 when imported from JS or Components with svg-url-loader
  • SVG elements id attributes are extended with unique prefixes to avoid collisions between inlined <svg> images.

Requirements

  • Node.js v10+
  • Neutrino v9
  • Webpack v4

Installation

@constgen/neutrino-svg-loader can be installed from NPM. You should install it to "dependencies" (--save) or "devDependncies" (--save-dev) depending on your goal.

npm install --save @constgen/neutrino-svg-loader

Usage

In preset

Require this package and plug it into Neutrino. The following shows how you can pass an options object to the middleware, showing the defaults:

let svgLoader = require('@constgen/neutrino-svg-loader')

neutrino.use(svgLoader({
   limit: 10000 // 10 KB - images lesser than this size in bytes will be inlined into JS bundle. But onlly images referenced from styles are affected. All others are alwas inlined
}))

In neutrinorc

The middleware also may be used together with another presets in Neutrino rc-file, e.g.:

.neutrinorc.js

let svgLoader = require('@constgen/neutrino-svg-loader')

module.exports = {
   use: [
      svgLoader()
   ]
}