-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
60 lines (56 loc) · 1.86 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
import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import Icons from 'unplugin-icons/vite'
import IconsResolver from 'unplugin-icons/resolver'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
import Inspect from 'vite-plugin-inspect'
const pathSrc = path.resolve(__dirname, 'src')
// https://vitejs.dev/config/
export default defineConfig({
base: './', // 打包后的文件引用使用相对路径(需要时可选)
resolve: {
alias: { '@': pathSrc, },
},
plugins: [
vue(),
AutoImport({
imports: ['vue'], // 自动导入Vue相关函数
resolvers: [
ElementPlusResolver(), // 自动导入Element Plus相关函数,如:ref,reactive,toRef等
IconsResolver({prefix: 'Icon',}), // 自动导入图标组件
],
dts: path.resolve(pathSrc, 'auto-imports.d.ts'),
}),
Components({
resolvers: [
ElementPlusResolver(), // 自动导入ElementPlus组件,如:ELMessage,ELMessageBox等
IconsResolver({ enabledCollections: ['ep'], }) // 自动注册图标组件
],
dts: path.resolve(pathSrc, 'components.d.ts'),
}),
Icons({ autoInstall: true, }),
Inspect(), // 安装Inspect插件
],
server: {
port: 8080, // 启动端口
open: false, // 启动后在浏览器打开
proxy: { // 跨域代理: https://cn.vitejs.dev/config/server-options.html#server-proxy
'/local_api': {
target: 'https://api.imooc-admin.lgdsunday.club/api',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/local_api/, '')
}
},
/**
proxy: {
'/api': {
target: 'https://api.imooc-admin.lgdsunday.club',
changeOrigin: true,
}
}
*/
}
})