mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-04-30 22:29:01 +08:00
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]
|
|
}
|