-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
90 lines (79 loc) · 1.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import { resolve } from 'node:path'
import { defineConfig } from 'vite'
import Inspect from 'vite-plugin-inspect'
import Icons from 'unplugin-icons/vite'
import IconsResolver from 'unplugin-icons/resolver'
import Components from 'unplugin-vue-components/vite'
import Vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import UnoCSS from 'unocss/vite'
import SVG from 'vite-svg-loader'
const promises: Promise<any>[] = []
export default defineConfig({
resolve: {
alias: [
{ find: '~/', replacement: `${resolve(__dirname, 'src')}/` },
],
},
optimizeDeps: {
include: [
'vue',
'vue-router',
'@vueuse/core',
'dayjs',
'dayjs/plugin/localizedFormat',
],
},
plugins: [
UnoCSS(),
Vue({
include: [/\.vue$/, /\.md$/],
reactivityTransform: true,
}),
AutoImport({
imports: [
'vue',
'vue-router',
'@vueuse/core',
'@vueuse/head',
],
}),
Components({
extensions: ['vue', 'md'],
dts: true,
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
resolvers: [
IconsResolver({
componentPrefix: '',
}),
],
}),
Inspect(),
Icons({
defaultClass: 'inline',
defaultStyle: 'vertical-align: sub;',
}),
SVG({
svgo: false,
defaultImport: 'url',
}),
{
name: 'await',
async closeBundle() {
await Promise.all(promises)
},
},
],
build: {
rollupOptions: {
onwarn(warning, next) {
if (warning.code !== 'UNUSED_EXTERNAL_IMPORT')
next(warning)
},
},
},
ssgOptions: {
formatting: 'minify',
format: 'cjs',
},
})