15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
export const AppConfig: {
|
|
[key:string]: {
|
|
ldapApiUrl: string,
|
|
ldapApiKey: string
|
|
}
|
|
} = {
|
|
default:{
|
|
ldapApiUrl: 'https://test-api.hkchc.team',
|
|
ldapApiKey: 'MPCbsNa6l2RJ7D1Zo6D03qtVF1P93st3'
|
|
},
|
|
production:{
|
|
ldapApiUrl: 'https://test-api.hkchc.team',
|
|
ldapApiKey: 'MPCbsNa6l2RJ7D1Zo6D03qtVF1P93st3'
|
|
}
|
|
} |