-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
47 lines (45 loc) · 1.8 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
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
// 如果编辑器提示 path 模块找不到,则可以安装一下 @types/node -> npm i @types/node -D
import {resolve} from 'path'
import VitePluginElementPlus from 'vite-plugin-element-plus'
// https://vitejs.dev/config/
import os from 'os'
console.log(os.platform(), typeof os.platform())
export default defineConfig(({mode}) => {
return {
define: {
'import.meta.env.__Platform__': `'${os.platform()}'`,
},
plugins: [vue(),
VitePluginElementPlus({
// 如果你需要使用 [component name].scss 源文件,你需要把下面的注释取消掉。
// 对于所有的 API 你可以参考 https://github.com/element-plus/vite-plugin-element-plus
// 的文档注释
// useSource: true,
format: mode === 'development' ? 'esm' : 'cjs',
}),
],
resolve: {
alias: {
'@': resolve(__dirname, 'src') // 设置 `@` 指向 `src` 目录
}
},
base: './', // 设置打包路径
server: {
port: 4000, // 设置服务启动端口号
open: true, // 设置服务启动时是否自动打开浏览器
cors: true,// 允许跨域
// 设置代理,根据我们项目实际情况配置
proxy: {
'/apps': {
target: 'http://0.0.0.0:8771',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace('/apps/', '/')
}
}
}
}
}
)