2025-07-18 11:08:09 +08:00
|
|
|
// /**
|
|
|
|
|
// * 自动引入 svg 图标
|
|
|
|
|
// * */
|
|
|
|
|
import { resolve } from '../utils';
|
|
|
|
|
|
|
|
|
|
import { createSvgIconsPlugin } from "vite-plugin-svg-icons";
|
2025-06-16 14:42:26 +08:00
|
|
|
|
|
|
|
|
export function configIcons() {
|
2025-07-18 11:08:09 +08:00
|
|
|
return createSvgIconsPlugin({
|
|
|
|
|
iconDirs: [resolve( "src/assets/svg")],
|
|
|
|
|
symbolId: "icon-[dir]-[name]",
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|
|