| 
									
										
										
										
											2022-12-01 17:57:55 +08:00
										 |  |  | import { resolve } from 'path' | 
					
						
							|  |  |  | import Vue from '@vitejs/plugin-vue' | 
					
						
							|  |  |  | import VueJsx from '@vitejs/plugin-vue-jsx' | 
					
						
							|  |  |  | import WindiCSS from 'vite-plugin-windicss' | 
					
						
							|  |  |  | import progress from 'vite-plugin-progress' | 
					
						
							|  |  |  | import EslintPlugin from 'vite-plugin-eslint' | 
					
						
							|  |  |  | import PurgeIcons from 'vite-plugin-purge-icons' | 
					
						
							| 
									
										
										
										
											2022-12-05 19:31:09 +08:00
										 |  |  | import { ViteEjsPlugin } from 'vite-plugin-ejs' | 
					
						
							| 
									
										
										
										
											2023-01-18 15:05:44 +08:00
										 |  |  | import ElementPlus from 'unplugin-element-plus/vite' | 
					
						
							| 
									
										
										
										
											2023-01-18 11:50:47 +08:00
										 |  |  | import AutoImport from 'unplugin-auto-import/vite' | 
					
						
							|  |  |  | import Components from 'unplugin-vue-components/vite' | 
					
						
							|  |  |  | import { ElementPlusResolver } from 'unplugin-vue-components/resolvers' | 
					
						
							| 
									
										
										
										
											2022-12-01 17:57:55 +08:00
										 |  |  | import viteCompression from 'vite-plugin-compression' | 
					
						
							|  |  |  | import vueSetupExtend from 'vite-plugin-vue-setup-extend' | 
					
						
							| 
									
										
										
										
											2022-12-19 15:28:59 +08:00
										 |  |  | import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite' | 
					
						
							| 
									
										
										
										
											2022-12-01 17:57:55 +08:00
										 |  |  | import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' | 
					
						
							|  |  |  | export function createVitePlugins(VITE_APP_TITLE: string) { | 
					
						
							|  |  |  |   const root = process.cwd() | 
					
						
							|  |  |  |   // 路径查找
 | 
					
						
							|  |  |  |   function pathResolve(dir: string) { | 
					
						
							|  |  |  |     return resolve(root, '.', dir) | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return [ | 
					
						
							|  |  |  |     Vue(), | 
					
						
							|  |  |  |     VueJsx(), | 
					
						
							|  |  |  |     WindiCSS(), | 
					
						
							|  |  |  |     progress(), | 
					
						
							|  |  |  |     PurgeIcons(), | 
					
						
							|  |  |  |     vueSetupExtend(), | 
					
						
							| 
									
										
										
										
											2023-01-18 15:05:44 +08:00
										 |  |  |     ElementPlus(), | 
					
						
							| 
									
										
										
										
											2023-01-18 11:50:47 +08:00
										 |  |  |     AutoImport({ | 
					
						
							| 
									
										
										
										
											2023-01-18 14:23:45 +08:00
										 |  |  |       include: [ | 
					
						
							|  |  |  |         /\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
 | 
					
						
							|  |  |  |         /\.vue$/, | 
					
						
							|  |  |  |         /\.vue\?vue/, // .vue
 | 
					
						
							|  |  |  |         /\.md$/ // .md
 | 
					
						
							|  |  |  |       ], | 
					
						
							|  |  |  |       imports: [ | 
					
						
							|  |  |  |         'vue', | 
					
						
							|  |  |  |         'vue-router', | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |           '@/hooks/web/useI18n': ['useI18n'], | 
					
						
							|  |  |  |           '@/hooks/web/useXTable': ['useXTable'], | 
					
						
							|  |  |  |           '@/hooks/web/useMessage': ['useMessage'], | 
					
						
							|  |  |  |           '@/hooks/web/useVxeCrudSchemas': ['useVxeCrudSchemas'], | 
					
						
							|  |  |  |           '@/utils/formRules': ['required'], | 
					
						
							|  |  |  |           '@/utils/dict': ['DICT_TYPE'] | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       ], | 
					
						
							| 
									
										
										
										
											2023-01-18 11:50:47 +08:00
										 |  |  |       dts: 'src/types/auto-imports.d.ts', | 
					
						
							|  |  |  |       resolvers: [ElementPlusResolver()], | 
					
						
							|  |  |  |       eslintrc: { | 
					
						
							|  |  |  |         enabled: false, // Default `false`
 | 
					
						
							|  |  |  |         filepath: './.eslintrc-auto-import.json', // Default `./.eslintrc-auto-import.json`
 | 
					
						
							|  |  |  |         globalsPropValue: true // Default `true`, (true | false | 'readonly' | 'readable' | 'writable' | 'writeable')
 | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }), | 
					
						
							|  |  |  |     Components({ | 
					
						
							|  |  |  |       // 要搜索组件的目录的相对路径
 | 
					
						
							|  |  |  |       dirs: ['src/components'], | 
					
						
							|  |  |  |       // 组件的有效文件扩展名
 | 
					
						
							|  |  |  |       extensions: ['vue', 'md'], | 
					
						
							|  |  |  |       // 搜索子目录
 | 
					
						
							|  |  |  |       deep: true, | 
					
						
							|  |  |  |       include: [/\.vue$/, /\.vue\?vue/], | 
					
						
							|  |  |  |       // 生成自定义 `auto-components.d.ts` 全局声明
 | 
					
						
							|  |  |  |       dts: 'src/types/auto-components.d.ts', | 
					
						
							|  |  |  |       // 自定义组件的解析器
 | 
					
						
							|  |  |  |       resolvers: [ElementPlusResolver()], | 
					
						
							|  |  |  |       exclude: [/[\\/]node_modules[\\/]/] | 
					
						
							|  |  |  |     }), | 
					
						
							| 
									
										
										
										
											2022-12-01 17:57:55 +08:00
										 |  |  |     EslintPlugin({ | 
					
						
							|  |  |  |       cache: false, | 
					
						
							|  |  |  |       include: ['src/**/*.vue', 'src/**/*.ts', 'src/**/*.tsx'] // 检查的文件
 | 
					
						
							|  |  |  |     }), | 
					
						
							| 
									
										
										
										
											2022-12-19 15:28:59 +08:00
										 |  |  |     VueI18nPlugin({ | 
					
						
							| 
									
										
										
										
											2022-12-01 17:57:55 +08:00
										 |  |  |       runtimeOnly: true, | 
					
						
							|  |  |  |       compositionOnly: true, | 
					
						
							|  |  |  |       include: [resolve(__dirname, 'src/locales/**')] | 
					
						
							|  |  |  |     }), | 
					
						
							|  |  |  |     createSvgIconsPlugin({ | 
					
						
							|  |  |  |       iconDirs: [pathResolve('src/assets/svgs')], | 
					
						
							|  |  |  |       symbolId: 'icon-[dir]-[name]', | 
					
						
							|  |  |  |       svgoOptions: true | 
					
						
							|  |  |  |     }), | 
					
						
							|  |  |  |     viteCompression({ | 
					
						
							|  |  |  |       verbose: true, // 是否在控制台输出压缩结果
 | 
					
						
							|  |  |  |       disable: false, // 是否禁用
 | 
					
						
							|  |  |  |       threshold: 10240, // 体积大于 threshold 才会被压缩,单位 b
 | 
					
						
							|  |  |  |       algorithm: 'gzip', // 压缩算法,可选 [ 'gzip' , 'brotliCompress' ,'deflate' , 'deflateRaw']
 | 
					
						
							|  |  |  |       ext: '.gz', // 生成的压缩包后缀
 | 
					
						
							| 
									
										
										
										
											2022-12-06 00:29:17 +08:00
										 |  |  |       deleteOriginFile: false //压缩后是否删除源文件
 | 
					
						
							| 
									
										
										
										
											2022-12-01 17:57:55 +08:00
										 |  |  |     }), | 
					
						
							| 
									
										
										
										
											2022-12-05 19:31:09 +08:00
										 |  |  |     ViteEjsPlugin({ | 
					
						
							|  |  |  |       title: VITE_APP_TITLE | 
					
						
							| 
									
										
										
										
											2022-12-01 17:57:55 +08:00
										 |  |  |     }) | 
					
						
							|  |  |  |   ] | 
					
						
							|  |  |  | } |