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
| /*
| * @Description: file content
| * @Author: your name
| * @version:
| * @Date: 2024-06-17 14:51:26
| * @LastEditors: Ben Lin
| * @LastEditTime: 2024-06-18 18:06:29
| */
| import { defineApplicationConfig } from '@vben/vite-config';
|
| export default defineApplicationConfig({
| overrides: {
| optimizeDeps: {
| esbuildOptions: {
| target: 'esnext',
| },
| include: [
| 'echarts/core',
| 'echarts/charts',
| 'echarts/components',
| 'echarts/renderers',
| 'qrcode',
| '@iconify/iconify',
| 'ant-design-vue/es/locale/zh_CN',
| 'ant-design-vue/es/locale/en_US',
| ],
| },
| server: {
| port: 3100,
| proxy: {
| '/basic-api': {
| target: 'http://localhost:3000',
| changeOrigin: true,
| ws: true,
| rewrite: (path) => path.replace(new RegExp(`^/basic-api`), ''),
| // only https
| // secure: false
| },
| '/upload': {
| target: 'http://localhost:3300/upload',
| changeOrigin: true,
| ws: true,
| rewrite: (path) => path.replace(new RegExp(`^/upload`), ''),
| },
| },
| open: true, // 项目启动后,自动打开
| warmup: {
| clientFiles: ['./index.html', './src/{views,components}/*'],
| },
| },
| build: {
| target: 'esnext',
| rollupOptions: {
| output: {
| manualChunks: {
| echarts: ['echarts'],
| },
| },
| },
| },
| },
| });
|
|