22 lines
383 B
JavaScript
22 lines
383 B
JavaScript
// 不同的环境变量配置
|
|
const development = {
|
|
requestBaseUrl: 'http://development',
|
|
appid: '',
|
|
}
|
|
|
|
const test = {
|
|
requestBaseUrl: 'https://api.dev.dwoodauto.com/api',
|
|
appid: 'wxd5xxxxee0fce1c81',
|
|
}
|
|
|
|
const production = {
|
|
requestBaseUrl: 'http://production',
|
|
appid: 'wx3xxxx1ce403cab3',
|
|
}
|
|
|
|
export default {
|
|
development,
|
|
test,
|
|
production
|
|
}
|