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
const proxyURL = process.env.PANDA_ENV_PROXY || 'http://192.168.8.28:8911';
let exUrl = '';
if (proxyURL.includes(proxyURL.toLowerCase().includes('https'))) {
exUrl = proxyURL.replace('https', 'ws');
} else {
exUrl = proxyURL.replace('http', 'ws');
}
const wsServerPath = exUrl;
export default {
'/api': {
target: proxyURL,
changeOrigin: true,
pathRewrite: { '^/api': '' },
},
'/jessica': {
target: wsServerPath,
changeOrigin: true,
ws: true,
pathRewrite: {
'/jessica': '/jessica',
},
},
'/PandaMonitor': {
target: proxyURL,
changeOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
pathRewrite: {
'/PandaMonitor': '/PandaMonitor',
},
},
'/PandaCore': {
target: proxyURL,
changeOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
pathRewrite: {
'/PandaCore': '/PandaCore',
},
},
'/PandaWater': {
target: proxyURL,
changeOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
pathRewrite: {
'/PandaWater': '/PandaWater',
},
},
};