11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
let runtimeConfig: any
|
|
|
|
export const getConfig = () => {
|
|
return runtimeConfig
|
|
}
|
|
export default getConfig
|
|
|
|
export function setConfig(configValue: any): void {
|
|
runtimeConfig = configValue
|
|
}
|