You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
475 B
17 lines
475 B
import path from 'node:path'
|
|
import process from 'node:process'
|
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
|
|
|
export function configIconPlugin() {
|
|
const iconPlugin = createSvgIconsPlugin({
|
|
// Specify the icon folder to be cached
|
|
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
|
|
// Specify symbolId format
|
|
symbolId: 'icon-[dir]-[name]',
|
|
inject: 'body-last',
|
|
customDomId: '__svg__icons__dom__',
|
|
})
|
|
|
|
return iconPlugin
|
|
}
|