rollup-plugin-svgo icon indicating copy to clipboard operation
rollup-plugin-svgo copied to clipboard

✂️ A rollup plugin to import svg files processed with svgo

Results 3 rollup-plugin-svgo issues
Sort by recently updated
recently updated
newest added

This leads to, e.g., rollup-plugin-svgo to never be able to utilize a base64 encoded datauri. I issued a corresponding PR for SVGO, see https://github.com/svg/svgo/pull/1679

When using the plugin in the Svelte (Rollup) config, this is what the generated code file will look like with default settings: ```js export default undefined ``` And when using...

Seems like this plugin is currently doing two things: 1. Optimizing the SVG with SVGO 2. Converting it to a JS module and exporting the SVG as a string The...