-
Notifications
You must be signed in to change notification settings - Fork 101
/
vite.config.ts
64 lines (64 loc) · 1.83 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
/*
* @Description: Stay hungry,Stay foolish
* @Author: Huccct
* @Date: 2023-05-17 14:32:02
* @LastEditors: Huccct
* @LastEditTime: 2023-06-02 17:37:30
*/
import { ConfigEnv, UserConfigExport, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
import { viteMockServe } from 'vite-plugin-mock'
import DefineOptions from 'unplugin-vue-define-options/vite'
import VueSetupExtend from 'vite-plugin-vue-setup-extend'
import path from 'path'
// 引入svg
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
// https://vitejs.dev/config/
export default ({ command, mode }: ConfigEnv): UserConfigExport => {
// 获取各种环境下对应的变量
let env = loadEnv(mode, process.cwd())
return {
base: './',
plugins: [
VueSetupExtend(),
DefineOptions(),
vue(),
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
createSvgIconsPlugin({
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
symbolId: 'icon-[dir]-[name]',
}),
viteMockServe({
localEnabled: command === 'serve',
}),
],
resolve: { alias: { '@': path.resolve('./src') } },
css: {
preprocessorOptions: {
scss: {
javascriptEnabled: true,
additionalData: '@import "./src/styles/variable.scss";',
},
},
},
// 代理跨域
server: {
proxy: {
[env.VITE_APP_BASE_API]: {
target: env.VITE_SERVE,
// 需要代理跨域
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
},
},
}
}