An open API service indexing awesome lists of open source software.

https://github.com/pixel-point/gatsby-plugin-svgr-svgo

Gatsby plugin for SVG usage with react, svgo support
https://github.com/pixel-point/gatsby-plugin-svgr-svgo

gatsby gatsby-plugin react react-svg svg svgo svgr

Last synced: 2 months ago
JSON representation

Gatsby plugin for SVG usage with react, svgo support

Awesome Lists containing this project

README

        

# gatsby-plugin-svgr-svgo

Plugin allows you to use SVGs as react components, configure SVGO(SVG optimization) settings and declare rules for SVG url loader with or without optimization.

[![npm version](https://badge.fury.io/js/gatsby-plugin-svgr-svgo.svg)](https://badge.fury.io/js/gatsby-plugin-svgr-svgo)
![Drone](https://img.shields.io/drone/build/pixel-point/gatsby-plugin-svgr-svgo?server=https%3A%2F%2Fdrone.pixelpoint.io)

## Install

For Gatsby 3.0.0+ versions use

```
npm install gatsby-plugin-svgr-svgo @svgr/webpack --save
```

For Gatsby 2.3.0+ versions use

```
npm install [email protected] @svgr/webpack --save
```

For older versions

```
npm install [email protected] @svgr/webpack --save
```

## Setup

### Default configuration

Add to your gatsby-config.js

```js
plugins: [`gatsby-plugin-svgr-svgo`];
```

By default there are two rules will be added:

1. SVG as a react component(inline svg), SVGO enabled for all SVGs that have .inline postfix. Example: `cat.inline.svg`

```js
import React from "react";
import CatInlineSvg from "../images/cat.inline.svg";

const IndexPage = () => (




);

export default IndexPage;
```

2. SVG as a file that available by url, SVGO enabled for all svgs that have `.svg`. Example: `cat.svg`.

```js
import React from "react";
import CatSvg from "../images/cat.svg";

const IndexPage = () => (




);

export default IndexPage;
```

### Advanced configuration

```js
plugins: [
{
resolve: "gatsby-plugin-svgr-svgo",
options: {
inlineSvgOptions: [
{
test: /\.inline.svg$/,
svgoConfig: {
plugins: [
{
name: "preset-default",
params: {
overrides: [{ name: "removeViewBox", active: false }],
},
},
"prefixIds",
],
},
},
],
urlSvgOptions: [
{
test: /\.svg$/,
svgoConfig: {
plugins: [{ name: "removeViewBox", active: false }],
},
},
],
},
},
];
```

You can declare various rules based on loader that should be used under `inlineSvgOptions` and `urlSvgOptions`.

`test` - pattern that will be used to match file name

`svgoConfig` - accepts plugins list with settings, list of available plugins(options) you can find [here](https://github.com/svg/svgo#what-it-can-do)

`svgo` - disables SVGO if set in `false`

### SVGO disabled example

```js
plugins: [
{
resolve: "gatsby-plugin-svgr-svgo",
options: {
urlSvgOptions: [
{
test: /\.svg$/,
svgo: false,
},
],
},
},
];
```

### Set URL loader fallback limit

By default webpack `url-loader` has a fallback to `file-loader` that converts the file from the original extension to base64. Plugins set default as 512 bytes. So if you want to set the limit from which it should be loaded directly from url instead of base64 loading just use limit option within `urlLoaderOptions`.

Limits you set in bytes. Read about more options [there](https://webpack.js.org/loaders/url-loader/)

```js
urlSvgOptions: [
{
test: /\.svg$/,
svgoConfig: {
plugins: [{ name: "removeViewBox", active: false }],
},
urlLoaderOptions: {
limit: 512,
},
},
];
```