forked from antdv-pro/antdv-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
100 lines (100 loc) · 2.65 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
91
92
93
94
95
96
97
98
99
100
import { resolve } from 'path'
import { fileURLToPath } from 'url'
import { loadEnv } from 'vite'
import type { ConfigEnv, UserConfig } from 'vite'
import { createVitePlugins } from './plugins'
const baseSrc = fileURLToPath(new URL('./src', import.meta.url))
// https://vitejs.dev/config/
export default ({ mode }: ConfigEnv): UserConfig => {
const env = loadEnv(mode, process.cwd())
const proxyObj = {}
if (mode === 'development' && env.VITE_APP_BASE_API_DEV && env.VITE_APP_BASE_URL_DEV) {
proxyObj[env.VITE_APP_BASE_API_DEV] = {
target: env.VITE_APP_BASE_URL_DEV,
changeOrigin: true,
rewrite: path => path.replace(new RegExp(`^${env.VITE_APP_BASE_API_DEV}`), ''),
}
}
return {
plugins: createVitePlugins(env),
resolve: {
alias: [
{
find: 'dayjs',
replacement: 'dayjs/esm',
},
{
find: /^dayjs\/locale/,
replacement: 'dayjs/esm/locale',
},
{
find: /^dayjs\/plugin/,
replacement: 'dayjs/esm/plugin',
},
{
find: 'vue-i18n',
replacement: mode === 'development' ? 'vue-i18n/dist/vue-i18n.esm-browser.js' : 'vue-i18n/dist/vue-i18n.esm-bundler.js',
},
{
find: /^ant-design-vue\/es$/,
replacement: 'ant-design-vue/es',
},
{
find: /^ant-design-vue\/dist$/,
replacement: 'ant-design-vue/dist',
},
{
find: /^ant-design-vue\/lib$/,
replacement: 'ant-design-vue/es',
},
{
find: /^ant-design-vue$/,
replacement: 'ant-design-vue/es',
},
{
find: 'lodash',
replacement: 'lodash-es',
},
{
find: '~@',
replacement: baseSrc,
},
{
find: '~',
replacement: baseSrc,
},
{
find: '@',
replacement: baseSrc,
},
{
find: '~#',
replacement: resolve(baseSrc, './enums'),
},
],
},
build: {
chunkSizeWarningLimit: 4096,
rollupOptions: {
output: {
manualChunks: {
vue: ['vue', 'vue-router', 'pinia', 'vue-i18n', '@vueuse/core'],
antd: ['ant-design-vue', '@ant-design/icons-vue', 'dayjs'],
// lodash: ['loadsh-es'],
},
},
},
},
server: {
port: 6678,
proxy: {
...proxyObj,
[env.VITE_APP_BASE_API]: {
target: env.VITE_APP_BASE_URL,
changeOrigin: true,
rewrite: path => path.replace(new RegExp(`^${env.VITE_APP_BASE_API}`), ''),
},
},
},
}
}