Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 345 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 345 Bytes

vite-plugin-react-svg

Usage

import svgPlugin from "vite-plugin-react-svg";


// vite.config.js
// ...
plugins: [
    svgPlugin(options) // svgr options
]

// ...
import svgUrl, { ReactComponent as SvgIcon } from '***.svg';
// ...
<SvgIcon style={{fontSize: 16}} />
// ...
<img src={svgUrl}  alt=""/>
// ...