Remote Config Common use cases Core Initialization import { getRemoteConfig } from "firebase/remote-config"; const remoteConfig = getRemoteConfig(); Set development mode for caching remoteConfig.settings.minimumFetchIntervalMillis = 3600000; Get active configuration and values import { fetchAndActivate } from "firebase/remote-config"; fetchAndActivate(remoteConfig) .then(() => { // ... }) .catch((err) => { // ... }); Get cached value import { getValue } from "firebase/remote-config"; const val = getValue(remoteConfig, "welcome_messsage"); Set default values remoteConfig.defaultConfig = { "welcome_message": "Welcome" }; Previous Performance Monitoring Next Storage