-
Notifications
You must be signed in to change notification settings - Fork 2
/
proxy.config.js
37 lines (37 loc) · 927 Bytes
/
proxy.config.js
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
module.exports = {
'/common': {
target: `${process.env.VUE_APP_BASE_URL}`,
changeOrigin: true,
pathRewrite: {
'^/common': `/${process.env.VUE_APP_BASE_API}/common`
}
},
'/test-table': {
target: `${process.env.VUE_APP_BASE_URL}`,
changeOrigin: true,
pathRewrite: {
'^/test-table': `/${process.env.VUE_APP_BASE_API}/test-table`
}
},
'/body-part': {
target: `${process.env.VUE_APP_BASE_URL}`,
changeOrigin: true,
pathRewrite: {
'^/body-part': `/${process.env.VUE_APP_BASE_API}/body-part`
}
},
'/muscle': {
target: `${process.env.VUE_APP_BASE_URL}`,
changeOrigin: true,
pathRewrite: {
'^/muscle': `/${process.env.VUE_APP_BASE_API}/muscle`
}
},
'/exercise': {
target: `${process.env.VUE_APP_BASE_URL}`,
changeOrigin: true,
pathRewrite: {
'^/exercise': `/${process.env.VUE_APP_BASE_API}/exercise`
}
}
}