mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-24 18:40:19 +08:00
18 lines
458 B
TypeScript
18 lines
458 B
TypeScript
|
/**
|
||
|
* Vite Plugin for fast creating SVG sprites.
|
||
|
* https://github.com/anncwb/vite-plugin-svg-icons
|
||
|
*/
|
||
|
|
||
|
import SvgIconsPlugin from 'vite-plugin-svg-icons';
|
||
|
import path from 'path';
|
||
|
|
||
|
export function configSvgIconsPlugin(isBuild: boolean) {
|
||
|
const svgIconsPlugin = SvgIconsPlugin({
|
||
|
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
|
||
|
svgoOptions: isBuild,
|
||
|
// default
|
||
|
symbolId: 'icon-[dir]-[name]',
|
||
|
});
|
||
|
return svgIconsPlugin;
|
||
|
}
|