SDK Config will allow for plugins to set and manage configuration for their plugin. Configuration will be persisted in either Local Storage or IndexedDB. Configuration options can be exposed to the users for them to set, see here
Since the SDK is scoped per plugin, they can use generic keys without interrupting the configs of other plugins.
tile(sdk) {
sdk.config.set("hello", "world")
sdk.config.get("hello") // world
// user changes a setting linked to "hello"
sdk.config.get("hello") // hey
}
SDK Config will allow for plugins to set and manage configuration for their plugin. Configuration will be persisted in either Local Storage or IndexedDB. Configuration options can be exposed to the users for them to set, see here
Since the SDK is scoped per plugin, they can use generic keys without interrupting the configs of other plugins.