We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4194b42 commit e046acaCopy full SHA for e046aca
packages/remote-config/src/client/rest_client.ts
@@ -77,7 +77,9 @@ export class RestClient implements RemoteConfigFetchClient {
77
this.firebaseInstallations.getToken()
78
]);
79
80
- const urlBase = 'https://staging-firebaseremoteconfig.sandbox.googleapis.com';
+ const urlBase =
81
+ window.FIREBASE_REMOTE_CONFIG_URL_BASE ||
82
+ 'https://firebaseremoteconfig.googleapis.com';
83
84
const url = `${urlBase}/v1/projects/${this.projectId}/namespaces/${this.namespace}:fetch?key=${this.apiKey}`;
85
0 commit comments