-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
104 lines (100 loc) · 3.35 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
101
102
103
104
import vue from '@vitejs/plugin-vue';
import {resolve} from 'path';
import type {ConfigEnv, UserConfigExport} from 'vite';
import {loadEnv} from '/@/utils/viteBuild';
import {viteMockServe} from 'vite-plugin-mock'
const pathResolve = (dir: string): any => {
return resolve(__dirname, '.', dir);
};
const {VITE_PORT, VITE_OPEN, VITE_PUBLIC_PATH, VITE_DROP_CONSOLE, VITE_USE_MOCK} = loadEnv();
const alias: Record<string, string> = {
'/@': pathResolve('./src/'),
'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js',
};
// https://vitejs.dev/config/
export default ({command}: ConfigEnv): UserConfigExport => {
return {
root: process.cwd(),
resolve: {alias},
base: process.env.NODE_ENV === 'production' ? VITE_PUBLIC_PATH : './',
server: {
host: '0.0.0.0',
port: VITE_PORT,
open: VITE_OPEN,
proxy: {
'/vue-admin-next': {
target: 'http://localhost:8888/',
ws: true,
changeOrigin: true,
rewrite: (path: string) => path.replace(/^\/vue-admin-next/, ''),
},
},
},
build: {
outDir: 'dist',
minify: 'esbuild',
sourcemap: false,
target: 'es2015',
terserOptions: {
compress: {
keep_infinity: true,
// Used to delete console in production environment
drop_console: VITE_DROP_CONSOLE,
},
},
// Turning off brotliSize display can slightly reduce packaging time
brotliSize: false,
chunkSizeWarningLimit: 2000,
rollupOptions: {
output: {
entryFileNames: `assets/[name].${new Date().getTime()}.js`,
chunkFileNames: `assets/[name].${new Date().getTime()}.js`,
assetFileNames: `assets/[name].${new Date().getTime()}.[ext]`,
},
},
},
optimizeDeps: {
include: [
'element-plus/lib/locale/lang/zh-cn',
'element-plus/lib/locale/lang/en',
'element-plus/lib/locale/lang/zh-tw'
],
},
css: {
postcss: {
plugins: [
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove();
}
},
},
},
],
},
},
define: {
__VUE_I18N_LEGACY_API__: JSON.stringify(false),
__VUE_I18N_FULL_INSTALL__: JSON.stringify(false),
__INTLIFY_PROD_DEVTOOLS__: JSON.stringify(false),
},
plugins: [
vue(),
viteMockServe({
mockPath: 'mock',
localEnabled: command !== 'build',
prodEnabled: command === 'build' && VITE_USE_MOCK,
watchFiles: true,
injectCode: `
import { setupProdMockServer } from '../mock/_createProductionServer';
setupProdMockServer();
`,
ignore: /^\_/,
logger: true,
}),
],
}
};