API Utils
updateAppConfig
Updates app config using deep assignment. Existing (nested) properties will be preserved.
updateAppConfig
Updates app config using deep assignment. Existing (nested) properties will be preserved.
Usage:
const appConfig = useAppConfig() // { foo: 'bar' }const newAppConfig = { foo: 'baz' }updateAppConfig(newAppConfig)console.log(appConfig) // { foo: 'baz' }
Read more in Missing link.