mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 04:12:45 +08:00
17 lines
466 B
TypeScript
17 lines
466 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,
|
||
});
|
||
};
|