mirror of
https://github.com/wmn1525/grasscutterTools.git
synced 2024-11-25 01:19:38 +00:00
17 lines
462 B
TypeScript
17 lines
462 B
TypeScript
/**
|
||
* @name SvgIconsPlugin
|
||
* @description 加载SVG文件,自动引入
|
||
*/
|
||
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
||
import path from 'path'
|
||
|
||
export const ConfigSvgIconsPlugin = (isBuild: boolean) => {
|
||
return createSvgIconsPlugin({
|
||
// 指定需要缓存的图标文件夹
|
||
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
|
||
// 指定symbolId格式
|
||
symbolId: 'icon-[dir]-[name]',
|
||
svgoOptions: isBuild,
|
||
})
|
||
}
|