This repository has been archived by the owner on Jul 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
59 lines (57 loc) · 1.53 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
import vue from '@vitejs/plugin-vue'
import ssr from 'vite-plugin-ssr/plugin'
import Components from 'unplugin-vue-components/vite';
import AutoImport from 'unplugin-auto-import/vite';
import WindiCSS from 'vite-plugin-windicss';
import ViteSvgIcons from 'vite-plugin-svg-icons';
import yaml from '@rollup/plugin-yaml';
import { UserConfig } from 'vite'
import path from "path";
import { minifyHtml } from "vite-plugin-html";
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
import styleImport, { ElementPlusResolve } from 'vite-plugin-style-import'
const config: UserConfig = {
plugins: [
vue({
include: [/\.vue$/, /\.md$/],
}),
ssr(),
AutoImport({
imports: [
// presets
'vue',
'@vueuse/head',
],
dts: 'src/auto-imports.d.ts',
resolvers: [ElementPlusResolver()],
}),
Components({
dirs: ['src/components'],
extensions: ['vue', 'js'],
dts: 'src/components.d.ts',
// https://github.com/element-plus/element-plus/issues/4923
// resolvers: [ElementPlusResolver()],
}),
WindiCSS(),
ViteSvgIcons({
// Specify the icon folder to be cached
iconDirs: [path.resolve(process.cwd(), 'assets/icons')],
// Specify symbolId format
symbolId: 'icon-[dir]-[name]',
}),
minifyHtml(),
yaml(),
styleImport({
resolves:[
ElementPlusResolve(),
],
})
],
clearScreen: false,
resolve: {
alias: {
'~': path.resolve(__dirname, 'src'),
}
},
}
export default config