15 lines
354 B
TypeScript
15 lines
354 B
TypeScript
|
|
/**
|
||
|
|
* 自动引入 svg 图标
|
||
|
|
* */
|
||
|
|
import Icons from 'unplugin-icons/vite';
|
||
|
|
import { FileSystemIconLoader } from 'unplugin-icons/loaders';
|
||
|
|
|
||
|
|
export function configIcons() {
|
||
|
|
return Icons({
|
||
|
|
compiler: 'vue3',
|
||
|
|
customCollections: {
|
||
|
|
i: FileSystemIconLoader('./src/assets', (svg) => svg.replace(/^<svg /, '<svg class="eo-i" ')),
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}
|