wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { createLink } from './utils';
import { type ModuleConfig } from '/@/cool';
 
export default (): ModuleConfig => {
    return {
        enable: true,
        install() {
            const urls = [
                // 如:at.alicdn.com/t/c/font_4803959_e2to11yi7pu.css
            ];
            urls.forEach(url => createLink(url));
        },
 
        label: 'Iconfont',
        description: '图标字体插件,提供多种图标字体的支持',
        author: 'COOL',
        version: '1.0.0',
        updateTime: '2025-01-11',
        doc: 'https://www.iconfont.cn'
    };
};