Skip to content

A plugin for webpack that converts all your SVGs into symbols and merges them into a SVG sprite.

License

Notifications You must be signed in to change notification settings

anton-drobot/webpack-external-svg-sprite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Webpack External Svg Sprite

A plugin for webpack that converts all your SVGs into symbols and merges them into a SVG sprite.

Requirements

You will need NodeJS v4+, npm v2+ and webpack 2.

To make it work in older browsers, like Internet Explorer, you will also need SVG for Everybody or svgxuse.

Installation

npm i webpack-external-svg-sprite --save-dev

Plugin Options

  • emit - determines if the sprite is supposed to be emitted (default: true). Useful when generating server rendering bundles where you just need the SVG sprite URLs but not the sprite itself.
  • directory - folder where the files will be searched (required).
  • name - relative path to the sprite file (default: images/sprite.svg). The [hash] placeholder is supported.
  • prefix - value to be prefixed to the icons name (default: icon-).
  • suffix - value to be suffixed to the icons name (default: ``).
  • svgoOptions - custom options to be passed to svgo.

Usage

If you have the following webpack configuration:

// webpack.config.js

import path from 'path';
import SvgStorePlugin from 'webpack-external-svg-sprite';

module.exports = {
    output: {
        path: path.resolve(__dirname, 'public'),
        publicPath: '/',
    },
    plugins: [
        new SvgStorePlugin({
            emit: true,
            directory: path.resolve(__dirname, 'app'),
            name: 'images/sprite.svg',
            prefix: 'icon-',
            suffix: '',
            svgoOptions: {
                plugins: []
            }
        }),
    ],
};

Plugin will search SVG giles in app directory recursively and SVG sprite will be saved in public/images/sprite.svg.

License

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

About

A plugin for webpack that converts all your SVGs into symbols and merges them into a SVG sprite.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published