-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathvite.config.js
76 lines (74 loc) · 1.88 KB
/
vite.config.js
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
import { fileURLToPath, URL } from 'node:url';
import { defineConfig, loadEnv } from 'vite';
import { viteMockServe } from 'vite-plugin-mock';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
import eslintPlugin from 'vite-plugin-eslint';
// monaco
import monacoEditorPlugin from 'vite-plugin-monaco-editor';
// https://vitejs.dev/config/
export default ({ mode }) =>
defineConfig({
envDir: './env',
plugins: [
vue(),
viteMockServe({
mockPath: 'mock',
localEnabled: mode === 'dev',
logger: false,
supportTs: true,
}),
vueJsx(),
eslintPlugin({
include: ['src/**/*.js', 'src/**/*.vue', 'src/*.js', 'src/*.vue', 'mock/**/*.js'],
}),
monacoEditorPlugin({
languages: [
'javascript',
'typescript',
'yaml',
'html',
'css',
'json',
'java',
'sql',
'groovy',
'shell',
'python',
],
}),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
build: {
rollupOptions: {
// 分文件打包,减小单个js文件的大小
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString();
}
},
},
},
},
// 新增打包配置去除多余的console和debugger
esbuild: {
drop: ['console', 'debugger'],
},
define: {
__VUE_I18N_FULL_INSTALL__: true,
__VUE_I18N_LEGACY_API__: false,
__INTLIFY_PROD_DEVTOOLS__: false,
},
server: {
host: 'localhost',
port: 8080,
hmr: true,
usePolling: true,
// open: true, // 设置服务启动时是否自动打开浏览器
},
});