Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 413 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 413 Bytes

rollup-plugin-svg-path

A rollup plugin for converting SVG files to path

taken from the gestalt project

Installation

npm install rollup-plugin-svg-path --save-dev

Usage

// rollup.config.js
import svgPath from 'rollup-plugin-svg-path'

export default {
  plugins:[
    svgPath()
  ]
}