-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
58 lines (57 loc) · 1.87 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
import {defineConfig, loadEnv} from 'vite'
import react from '@vitejs/plugin-react'
import path from "path";
// https://vitejs.dev/config/
export default defineConfig({
// define: {
// __APP_ENV__: env.APP_ENV
// },
base: '/', //在 HTTP 请求中预留此文件夹,用于代理 Vite 作为子文件夹时使用。应该以 / 字符开始和结束。
//cors: true, //为开发服务器配置cors 默认启用并允许任何源
//assetsDir: '/', // 指定生成静态资源的存放路径
plugins: [react()],
/*resolve: {
alias: [
{ find: /^~/, replacement: path.resolve(__dirname, './') },
{ find: '@', replacement: path.resolve(__dirname, 'src') },
],
// alias: {
// '~': path.resolve(__dirname, './'), // 根路径
// '@': path.resolve(__dirname, 'src') // src 路径
// }
},*/
resolve: {
alias: {
'@': '/src/',
'@components': '/src/components/',
'@assets': '/src/assets/',
},
},
server: {
//port: 8099,
//open: true,
proxy: {
// 字符串简写写法
//'/foo': 'http://localhost:4567',
// 选项写法
'/api': {
target: 'http://chuneng-dev.louzhangmen.cn:9080/',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
},
// 使用 proxy 实例
// '/api': {
// target: 'http://jsonplaceholder.typicode.com',
// changeOrigin: true,
// configure: (proxy, options) => {
// // proxy 是 'http-proxy' 的实例
// }
// },
// Proxying websockets or socket.io
'/socket.io': {
target: 'ws://localhost:3000',
ws: true
}
}
}
})