diff --git a/.env.prod b/.env.prod index dcfba5c..29a3c4e 100644 --- a/.env.prod +++ b/.env.prod @@ -1,5 +1,5 @@ # 是否开启压缩资源 -VITE_COMPRESS_OPEN=N +VITE_BUILD_COMPRESS=N # 压缩算法 gzip | brotliCompress | deflate | deflateRaw VITE_COMPRESS_TYPE=gzip diff --git a/build/plugins.ts b/build/plugins.ts index 5b6eae5..0e18d54 100644 --- a/build/plugins.ts +++ b/build/plugins.ts @@ -1,4 +1,3 @@ -import path from 'node:path' import UnoCSS from '@unocss/vite' import vue from '@vitejs/plugin-vue' import vueJsx from '@vitejs/plugin-vue-jsx' @@ -7,13 +6,11 @@ import AutoImport from 'unplugin-auto-import/vite' import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' import viteCompression from 'vite-plugin-compression' import Icons from 'unplugin-icons/vite' +import { FileSystemIconLoader } from 'unplugin-icons/loaders' // https://github.com/antfu/unplugin-icons import IconsResolver from 'unplugin-icons/resolver' -// https://github.com/vbenjs/vite-plugin-svg-icons/blob/main/README.zh_CN.md -import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' - /** * @description: 设置vite插件配置 * @param {*} env - 环境变量配置 @@ -43,28 +40,31 @@ export function createVitePlugins(env: ImportMetaEnv) { // auto import components lib Components({ dts: 'src/typings/components.d.ts', - resolvers: [IconsResolver(), NaiveUiResolver()], + resolvers: [ + IconsResolver({ + prefix: false, + customCollections: [ + 'svg-icons', + ], + }), + NaiveUiResolver(), + ], }), // auto import iconify's icons Icons({ defaultStyle: 'display:inline-block', compiler: 'vue3', + customCollections: { + 'svg-icons': FileSystemIconLoader( + 'src/assets/svg-icons', + svg => svg.replace(/^ - - - + + + diff --git a/src/components/custom/CopyText.vue b/src/components/custom/CopyText.vue index 2119255..92d8496 100644 --- a/src/components/custom/CopyText.vue +++ b/src/components/custom/CopyText.vue @@ -14,7 +14,7 @@ const text = useVModel(props, 'modelValue', emit) {{ text }} - + diff --git a/src/components/custom/IconSelect/index.vue b/src/components/custom/IconSelect/index.vue index 3750a40..66b5db6 100644 --- a/src/components/custom/IconSelect/index.vue +++ b/src/components/custom/IconSelect/index.vue @@ -18,7 +18,7 @@ function handleSelectIcon(icon: string) { @@ -33,7 +33,7 @@ function handleSelectIcon(icon: string) { class="border border-gray-200 m-2px p-5px flex-center" @click="handleSelectIcon(item)" > - + diff --git a/src/components/custom/EIcon.vue b/src/components/custom/NovaIcon.vue similarity index 79% rename from src/components/custom/EIcon.vue rename to src/components/custom/NovaIcon.vue index f3aee98..8fc1283 100644 --- a/src/components/custom/EIcon.vue +++ b/src/components/custom/NovaIcon.vue @@ -2,19 +2,23 @@ import { Icon } from '@iconify/vue' interface iconPorps { + /* 图标名称 */ icon?: string + /* 图标颜色 */ color?: string + /* 图标大小 */ size?: number + /* 图标深度 */ depth?: 1 | 2 | 3 | 4 | 5 } const props = withDefaults(defineProps(), { size: 18, - icon: 'icon-park-outline:baby-feet', })