10 lines
349 B
JavaScript
10 lines
349 B
JavaScript
export const runtimeConfig = {
|
|
mode: 'mock',
|
|
baseUrl: 'http://182.61.18.23:8080',
|
|
clientId: '428a8310cd442757ae699df5d894f051',
|
|
tenantId: '000000'
|
|
}
|
|
|
|
export const isMockMode = () => runtimeConfig.mode === 'mock'
|
|
export const hasRemoteConfig = () => runtimeConfig.mode === 'remote' && Boolean(runtimeConfig.baseUrl && runtimeConfig.clientId)
|