rollup-plugin-quillsvg

0.1.3 • Public • Published

rollup-plugin-svg

Import SVG files for quill

Installation

yarn add rollup-plugin-quillsvg --dev

Usage

// rollup.config.js
import svg from 'rollup-plugin-svg';

export default {
  entry: 'src/input.js',
  dest: 'dist/output.js',
  plugins: [
    quillsvg()
  ]
};

You can use svgs in your bundle thusly:

import logo from './desirable-objects.svg'
document.body.appendChild( logo )

SVGs are encoded using base64, which means they will be 33% larger than the size on disk. You should therefore only use this for small images where the convenience of having them available on startup (e.g. rendering immediately to a canvas without co-ordinating asynchronous loading of several images) outweighs the cost.

Sources

This plugin was built (based on the rollup-plugin-image plugin) because it appears that the two existing suitable plugins:

rollup-plugin-image rollup-plugin-url

don't seem to work any more. I wanted a simple solution to provide SVG images to Vudash

License

MIT

Package Sidebar

Install

npm i rollup-plugin-quillsvg

Weekly Downloads

0

Version

0.1.3

License

MIT

Last publish

Collaborators

  • disedia