mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
27 lines
930 B
TypeScript
27 lines
930 B
TypeScript
import path from 'node:path'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
|
|
import Icons from 'unplugin-icons/vite' // https://github.com/antfu/unplugin-icons
|
|
import IconsResolver from 'unplugin-icons/resolver'
|
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // https://github.com/vbenjs/vite-plugin-svg-icons/blob/main/README.zh_CN.md
|
|
|
|
export default [
|
|
Components({
|
|
dts: 'src/typings/components.d.ts',
|
|
resolvers: [IconsResolver(), NaiveUiResolver()],
|
|
}),
|
|
Icons({
|
|
/* options */
|
|
defaultStyle: 'display:inline-block',
|
|
compiler: 'vue3',
|
|
}),
|
|
createSvgIconsPlugin({
|
|
// 指定需要缓存的图标文件夹
|
|
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
|
|
// 指定symbolId格式
|
|
symbolId: 'icon-[dir]-[name]',
|
|
// inject: 'body-last',
|
|
// customDomId: '__svg__icons__dom__',
|
|
}),
|
|
]
|