import path from 'node:path' import autoImport from 'unplugin-auto-import/vite' // 自动导入 import viteComponents from 'unplugin-vue-components/vite' // 自动按需导入 import vueI18nPlugin from '@intlify/unplugin-vue-i18n/vite' // i18n import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // `svg icon` import type { ComponentResolver, TypeImport } from 'unplugin-vue-components' import type { ImportsMap, PresetName } from 'unplugin-auto-import/types' import type { BuildOptions } from 'vite' import type { ViteSvgIconsPlugin } from 'vite-plugin-svg-icons' /** * * @param options `svg icon` 自定义配置 * * 使用 `svg` 作为图标 */ export const useSVGIcon = (options?: ViteSvgIconsPlugin) => { const defaultOptions = { iconDirs: [path.resolve(process.cwd(), 'src/icons')], symbolId: 'icon-[dir]-[name]', inject: 'body-last', customDomId: '__svg__icons__dom__', } return createSvgIconsPlugin(Object.assign({}, defaultOptions, options)) } /** * * @param imp 自动导入依赖 * @returns auto import plugin * * 自动导入 */ export const useAutoImport = async (imp: (ImportsMap | PresetName)[] = []) => autoImport({ include: [ /\.[tj]sx?$/, // .ts, .tsx, .js, .jsx /\.vue$/, /\.vue\?vue/, // .vue /\.md$/, // .md ], dts: true, imports: ['vue', 'vue-router', 'pinia', '@vueuse/core', 'vue-i18n', ...imp], }) /** * * @param resolvers 按需加载依赖项 * @param types 按需加载依赖类型 * * 按需加载 */ export const useViteComponents = async ( resolvers: (ComponentResolver | ComponentResolver[])[] = [], types: TypeImport[] = [], ) => viteComponents({ dts: true, resolvers: [...resolvers], types: [ { from: 'vue-router', names: ['RouterLink', 'RouterView'], }, ...types, ], }) export const useVueI18nPlugin = () => vueI18nPlugin({ runtimeOnly: true, compositionOnly: true, forceStringify: true, defaultSFCLang: 'json', include: [path.resolve(__dirname, '../locales/**')], }) /** * * @param title 浏览器 title 名称 */ export const HTMLTitlePlugin = (title: string) => { return { name: 'html-transform', transformIndexHtml: (html: string) => { return html.replace(/