Skip to content

Latest commit

 

History

History
93 lines (70 loc) · 2.38 KB

README.md

File metadata and controls

93 lines (70 loc) · 2.38 KB

gatsby-plugin-svg-sprite-loader

Gatsby plugin for creating SVG sprites using SVG sprite loader.

Install

$ npm install gatsby-plugin-svg-sprite-loader

Configure

// gatsby-config.js

module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-svg-sprite-loader`,
      options: {
        /* SVG sprite loader options */
        pluginOptions: {
          /* SVG sprite loader plugin options */
        }
      },
    },
  ],
}

Options

options

Default: { extract: true, spriteFilename: 'sprites.[contenthash].svg', symbolId: '[name]--[hash:base64:5]' }. Type: Object.

The options object is passed directly to SVG sprite loader, more info can be found here. To maintain consistency, spriteFilename and symbolId formatting are to the same formats used by Gatsby.js for CSS files.

pluginOptions

Default: {}. Type: Object.

The pluginOptions parameter is passed to svg-sprite-loader/plugin — if extract is set to true in the options parameter. If the sprites are used only inside <use xlinkHref='...'/> — and never referenced in CSS files or as src attribute of <img> elements — set plainSprite option to true to allow SVG sprite loader to generate a smaller output.

Usage

If extract mode is enabled (set to true by default), use sprite.url in xlinkHref prop. Otherwise, use sprite.id.

/* extract === true (default) */
import React from 'react'
import sprite from 'images/sprite.svg'

export default () => (
  <svg viewBox={sprite.viewBox}>
    <use xlinkHref={sprite.url}/>
  </svg>
)
/* extract === false */
import React from 'react'
import sprite from 'images/sprite.svg'

export default () => (
  <svg viewBox={sprite.viewBox}>
    <use xlinkHref={sprite.id}/>
  </svg>
)

Known bugs

There's an open bug on SVG sprite loader that wasn't fixed yet (more info on #334, #337 and #363 ), which generates invalid ESM code in some specific situations. If you're having some troubles, try setting the option esModule to false.

License

The MIT License