-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
vite.config.ts
50 lines (47 loc) · 1.45 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* eslint-disable node/prefer-global/process */
import path from 'node:path'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import IconsResolver from 'unplugin-icons/resolver'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
import Icons from 'unplugin-icons/vite'
import { FileSystemIconLoader } from 'unplugin-icons/loaders'
const pathSrc = path.resolve(__dirname, './src')
export default ({ mode }) => {
process.env = { ...process.env, ...loadEnv(mode, process.cwd()) }
return defineConfig({
base: process.env.VITE_APP_BASE_PATH || '/',
plugins: [
vue(),
AutoImport({
resolvers: [ElementPlusResolver()],
dts: `${pathSrc}/types/auto-imports.d.ts`,
}),
Components({
dts: `${pathSrc}/types/components.d.ts`,
resolvers: [
ElementPlusResolver(),
IconsResolver({
prefix: '',
customCollections: ['svg', 'unicons'],
}),
],
dirs: ['src/layouts', 'src/components'],
}),
Icons({
customCollections: {
svg: FileSystemIconLoader('./src/assets/svg'),
unicons: FileSystemIconLoader('./node_modules/@iconscout/unicons/svg/line'),
},
}),
],
resolve: {
alias: {
'@': pathSrc,
},
dedupe: ['vue'],
},
})
}