A Vite plugin that transforms SVG files into React components using the DOMParser.
This plugin significantly outperforms alternatives in terms of speed and consistency. You can boost the render speed of your SVG components by up to 3 times.
Performance Benchmark (100 iterations x 5 samples):
Plugin | Time (ms) | Std dev (ms) | Output Size (bytes) |
---|---|---|---|
vite-react-svg | 75.14 | Β±11.21 | 833 |
vite-plugin-svgr | 222.91 | Β±101.89 | 787 |
Relative Performance: vite-react-svg is 2.97x faster!
Notes
- find demo/benchmarks.ts and run these tests yourself.
- other tools like unplugin-icons require SVGR and fall into the same performance category.
- π Superior Speed: Processes SVGs ~3x faster than alternatives;
- π― Consistent Performance: Much lower variance in processing time (Β±11.21ms vs Β±101.89ms);
- π Ecosystem Compatible: Uses esbuild formatter for seamless integration with other Vite plugins.
Visual Performance Comparison:
Processing Time (ms) - Lower is better
vite-react-svg ββββββββ 75ms
vite-plugin-svgrβββββββββββββββββββββββββββ 223ms
Standard Deviation (ms) - Lower is better
vite-react-svg ββ 11ms
vite-plugin-svgrβββββββββββββββ 102ms
Note - the results are coming from a desktop PC with NodeJS v23.5. Your results my vary.
- π Fast transformation using DOMParser
- π― TypeScript support
- π§ Configurable transformation options
- π₯ Hot Module Replacement (HMR) support
- β‘ Vitest powered tests
npm install -D vite-react-svg
pnpm add -D vite-react-svg
yarn add -D vite-react-svg
deno add -D npm:vite-react-svg
bun add -D vite-react-svg
// vite.config.ts
import { defineConfig } from 'vite'
import reactSVG from 'vite-react-svg'
export default defineConfig({
plugins: [
// other plugins
reactSVG({
// optional
})
]
})
While the default options work just fine, for your convenience the plugin allows you to set them all:
interface VitePluginReactSvgOptions {
// esbuild transform options
esbuildOptions?: EsbuildTransformOPtions;
// filter options
include?: string | RegExp | (string | RegExp)[]
exclude?: string | RegExp | (string | RegExp)[]
}
esbuildOptions
: EsbuildTransformOptions esbuild will make sure the plugin will work seamless within the Vite ecosystem and provides some additional options;include
: filter option to include one or more RegExp for file IDs; the default value is["**/*.svg?react"]
;exclude
: filter option to exclude one or more RegExp for file IDs.
Note - If you modify or add more include filters and you're using Typescript, you should also define new global modules.
To add typescript support, edit your src/vite-env.d.ts
(or any global types you have set in your app) as follows:
/// <reference types="vite/client" />
/// <reference types="vite-react-svg" />
import Icon from './icon.svg?react'
const app = () => {
return <div>
<Icon
class='my-icon'
width={24} height={24}
style={{ fill: "currentColor" }}
/>
</div>
}
Notes:
- All properties present in the markup of your SVG files will be used as default values;
- The
viewBox
andxmlns
properties are somewhat required in order for the SVG to be rendered properly; - The plugin will also resolve SVG files from the
/public
folder or any validviteConfig.publicDir
option.
- vite-plugin-svgr - For inspiration on the plugin architecture.
- vite-solid-svg - For a SolidJS version.
vite-react-svg is released under MIT License.