-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
81 lines (77 loc) · 1.93 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
import basicSsl from '@vitejs/plugin-basic-ssl';
import vue from '@vitejs/plugin-vue';
import unocss from 'unocss/vite';
import AutoImport from 'unplugin-auto-import/vite';
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers';
import Components from 'unplugin-vue-components/vite';
import Pages from 'vite-plugin-pages';
import Layouts from 'vite-plugin-vue-layouts';
import { fileURLToPath, URL } from 'url';
import { defineConfig } from 'vite';
import svgLoader from 'vite-svg-loader';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
Pages(),
svgLoader(),
basicSsl(),
unocss(),
Layouts(),
Components({
dirs: ['src/components'],
extensions: ['vue'],
dts: 'src/components.d.ts',
deep: true,
resolvers: [
AntDesignVueResolver({
importStyle: 'less',
}),
],
}),
AutoImport({
imports: ['vue', 'vue-router', '@vueuse/core'],
dts: 'src/auto-imports.d.ts',
}),
],
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
server: {
host: '0.0.0.0',
port: 8000,
},
resolve: {
alias: [{ find: '@', replacement: fileURLToPath(new URL('./src', import.meta.url)) }],
},
build: {
target: ['es2020'],
rollupOptions: {
output: {
manualChunks: {
pinia: ['pinia'],
vue: ['vue', 'vue-router'],
'@fortawesome': [
'@fortawesome/fontawesome-svg-core',
'@fortawesome/free-brands-svg-icons',
'@fortawesome/free-regular-svg-icons',
'@fortawesome/free-solid-svg-icons',
'@fortawesome/vue-fontawesome',
],
'@ant-design': ['ant-design-vue'],
'@vueuse': ['@vueuse/core'],
'lodash-es': ['lodash-es'],
},
},
},
},
optimizeDeps: {
esbuildOptions: {
target: 'es2020',
},
},
});