-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathvite.config.ts
53 lines (51 loc) · 1.77 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
import {fileURLToPath, URL} from 'node:url'
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
base: './',
server: {
// 访问项目的IP地址,可以设置为“0.0.0.0”来使项目外部可访问
host: "0.0.0.0",
// 访问项目的端口号
port: 8080,
// 自动启动浏览器
open: true,
// 配置反向代理处理跨域请求
proxy: {
"/api/ls": {
target: "http://127.0.0.1:5000",
changeOrigin: true, //是否跨域
// rewrite: (path) => path.replace(/^\/mis/, ""), //因为后端接口有mis前缀,所以不需要替换
// ws: true, //是否代理 websockets
// secure: true, //是否https接口
},
"/api/rs": {
target: "http://127.0.0.1:5000",
changeOrigin: true, //是否跨域
// rewrite: (path) => path.replace(/^\/mis/, ""), //因为后端接口有mis前缀,所以不需要替换
// ws: true, //是否代理 websockets
// secure: true, //是否https接口
},
},
},
// build: {
// rollupOptions: {
// output: {
// chunkFileNames: 'js-[name]-[hash].js',
// entryFileNames: 'js-[name]-[hash].js',
// assetFileNames: '[ext]-[name]-[hash][extname]',
// }
// }
// }
})