-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathvite.config.ts
More file actions
56 lines (53 loc) · 1.5 KB
/
vite.config.ts
File metadata and controls
56 lines (53 loc) · 1.5 KB
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
51
52
53
54
55
56
/* eslint-disable node/prefer-global/process */
import path from 'node:path'
import tailwindcss from '@tailwindcss/vite'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import { FileSystemIconLoader } from 'unplugin-icons/loaders'
import IconsResolver from 'unplugin-icons/resolver'
import Icons from 'unplugin-icons/vite'
import Components from 'unplugin-vue-components/vite'
import { defineConfig, loadEnv } from 'vite'
const pathSrc = path.resolve(__dirname, './src')
const pathRoot = path.resolve(__dirname, './')
export default ({ mode }) => {
process.env = { ...process.env, ...loadEnv(mode, process.cwd()) }
return defineConfig({
base: process.env.VITE_APP_BASE_PATH || '/',
plugins: [
tailwindcss(),
vue({
template: {
compilerOptions: {
isCustomElement: tag => tag === 'hex-color-picker',
},
},
}),
AutoImport({
dts: `${pathSrc}/types/auto-imports.d.ts`,
}),
Components({
dts: `${pathSrc}/types/components.d.ts`,
resolvers: [
IconsResolver({
prefix: '',
customCollections: ['svg'],
}),
],
dirs: ['src/layouts', 'src/features', 'src/shared/ui'],
}),
Icons({
customCollections: {
svg: FileSystemIconLoader('./src/assets/svg'),
},
}),
],
resolve: {
alias: {
'#': pathRoot,
'@': pathSrc,
},
dedupe: ['vue'],
},
})
}