-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
79 lines (78 loc) · 1.92 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
/*
* @Author: your name
* @Date: 2021-07-28 15:51:41
* @LastEditTime: 2022-03-07 21:29:56
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /vvt/vite.config.ts
*/
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
const path = require('path');
import svgicon from 'vite-plugin-svgicon';
const proxy = {
// target: 'http://localhost:3000/'
target: 'https://www.sotm.cn/'
}
export default defineConfig({
plugins: [vue(), svgicon({
include: ['**/assets/svg/origin/*.svg']
})],
resolve: {
extensions: ['.js', '.vue', '.ts', '.json'],
alias: {
'@': path.resolve(__dirname, './src'),
views: path.resolve(__dirname, './src/views'),
'@com': path.resolve(__dirname, "./src/components"),
utils: path.resolve(__dirname, './src/utils'),
assets: path.resolve(__dirname, "./src/assets"),
store: path.resolve(__dirname, "./src/store"),
router: path.resolve(__dirname, './src/router')
}
},
server: {
// hostname: '0.0.0.0',
// hmr: { overlay: false },
host: "localhost",
port: 3001,
// // 是否自动在浏览器打开
open: true,
// // 是否开启 https
// https: false,
// // 服务端渲染
// ssr: false,
cors: true,
proxy: {
'/apiv1': {
target: proxy.target,
changeOrigin: true,
followRedirects: true
},
'/admins': {
target: proxy.target,
changeOrigin: true,
followRedirects: true
},
},
},
build: {
target: 'es2015',
// sourcemap: 'inline',
rollupOptions: {
output: {
manualChunks: {
vendor: ['vue', 'vuex', 'vue-router'],
elementPlus: ['element-plus'],
axios: ['axios']
}
}
},
terserOptions: {
compress: {
keep_infinity: true,
drop_console: true
}
},
chunkSizeWarningLimit: 800
}
});