Jump to top

ConfigSettings

interface

An Interface representing settable config settings.

Example

The example below shows how to set a time limit to the length of time the request for remote config values

await firebase.remoteConfig().setConfigSettings({
   fetchTimeMillis: 6000,
});

Properties

fetchTimeMillis

</>

Indicates the default value in milliseconds to abandon a pending fetch request made to the Remote Config server. Defaults to 60000 (One minute).

fetchTimeMillis: undefined | number;

minimumFetchIntervalMillis

</>

Indicates the default value in milliseconds to set for the minimum interval that needs to elapse before a fetch request can again be made to the Remote Config server. Defaults to 43200000 (Twelve hours).

minimumFetchIntervalMillis: undefined | number;