19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
|
const proxyConfigMappings = {
|
||
|
dev: {
|
||
|
prefix: '/api',
|
||
|
target: 'http://localhost:8080',
|
||
|
},
|
||
|
test: {
|
||
|
prefix: '/api',
|
||
|
target: 'http://localhost:8080',
|
||
|
},
|
||
|
prod: {
|
||
|
prefix: '/api',
|
||
|
target: 'http://localhost:8080',
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export function getProxyConfig(envType = 'dev') {
|
||
|
return proxyConfigMappings[envType]
|
||
|
}
|