Browse Source
feat(iconify): 添加图标安全列表配置 添加了 Ant Design、Element Plus 和 Font Awesome 图标的安全列表, 用于离线构建时保留必要的图标资源。 ```pull/92/head
1 changed files with 39 additions and 1 deletions
@ -1,3 +1,41 @@ |
|||
export const iconifySafelist: string[] = [ |
|||
// Add backend menu icon names here to keep them in offline builds.
|
|||
'ant-design:account-book-twotone', |
|||
'ant-design:aliyun-outlined', |
|||
'ant-design:android-filled', |
|||
'ant-design:appstore-filled', |
|||
'ant-design:appstore-outlined', |
|||
'ant-design:bar-chart-outlined', |
|||
'ant-design:bell-outlined', |
|||
'ant-design:bug-filled', |
|||
'ant-design:carry-out-filled', |
|||
'ant-design:carry-out-outlined', |
|||
'ant-design:carry-out-twotone', |
|||
'ant-design:control-filled', |
|||
'ant-design:experiment-outlined', |
|||
'ant-design:field-binary-outlined', |
|||
'ant-design:file-pdf-twotone', |
|||
'ant-design:fund-outlined', |
|||
'ant-design:home-filled', |
|||
'ant-design:info-circle-filled', |
|||
'ant-design:insert-row-left-outlined', |
|||
'ant-design:layout-filled', |
|||
'ant-design:radius-bottomleft-outlined', |
|||
'ant-design:verified-outlined', |
|||
'ant-design:windows-outlined', |
|||
'ant-design:yuque-filled', |
|||
'ep:avatar', |
|||
'ep:chat-dot-round', |
|||
'ep:collection', |
|||
'ep:connection', |
|||
'ep:document-copy', |
|||
'ep:menu', |
|||
'ep:message', |
|||
'ep:position', |
|||
'ep:promotion', |
|||
'ep:takeaway-box', |
|||
'ep:tools', |
|||
'ep:user', |
|||
'fa:address-card', |
|||
'fa:edit', |
|||
'fa:stack-exchange', |
|||
] |
|||
|
|||
Loading…
Reference in new issue