mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-07 22:20:03 +00:00
27 lines
606 B
TypeScript
27 lines
606 B
TypeScript
import lucide from '@iconify-json/lucide/icons.json' with { type: 'json' }
|
|
import { addDynamicIconSelectors } from '@iconify/tailwind'
|
|
|
|
import { iconCollection } from './src/iconCollection'
|
|
|
|
export default {
|
|
content: [],
|
|
safelist: [
|
|
'icon-[lucide--folder]',
|
|
'icon-[lucide--package]',
|
|
'icon-[lucide--image]',
|
|
'icon-[lucide--video]',
|
|
'icon-[lucide--box]',
|
|
'icon-[lucide--audio-waveform]',
|
|
'icon-[lucide--message-circle]'
|
|
],
|
|
plugins: [
|
|
addDynamicIconSelectors({
|
|
iconSets: {
|
|
comfy: iconCollection,
|
|
lucide
|
|
},
|
|
prefix: 'icon'
|
|
})
|
|
]
|
|
}
|