-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
72 lines (64 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { resolve } from 'path'
import type { UserConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import Unocss from 'unocss/vite'
import PresetIcons from '@unocss/preset-icons'
import pkg from './package.json'
process.env.VITE_APP_VERSION = pkg.version
if (process.env.NODE_ENV === 'production')
process.env.VITE_APP_BUILD_EPOCH = new Date().getTime().toString()
// https://vitejs.dev/config/
const config: UserConfig = {
resolve: {
alias: {
'~': resolve(__dirname, '/src'),
},
},
plugins: [
Vue({
reactivityTransform: true, // https://vuejs.org/guide/extras/reactivity-transform.html
template: {
compilerOptions: {
// treat all tags with a dash as custom elements
isCustomElement: tag => tag.includes('-'),
},
},
}),
Unocss({
mode: 'shadow-dom',
presets: [
PresetIcons({
prefix: 'i-',
extraProperties: {
'display': 'inline-block',
'vertical-align': 'middle',
},
}),
],
}),
// https://github.com/antfu/unplugin-auto-import
AutoImport({
imports: ['vue', '@vueuse/core'],
dts: 'src/auto-imports.d.ts',
eslintrc: {
enabled: true,
},
}),
// https://github.com/antfu/unplugin-vue-components
Components({
dirs: ['src/components'],
extensions: ['vue'],
dts: 'src/components.d.ts',
}),
],
test: {
include: ['tests/**/*.test.ts'],
environment: 'jsdom',
deps: {
inline: ['@vue', '@vueuse', 'vue-demi'],
},
},
}
export default config