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 e9ed46d commit 280cc15Copy full SHA for 280cc15
src/GoogleApiComponent.js
@@ -17,6 +17,8 @@ const defaultCreateCache = options => {
17
const language = options.language || 'en';
18
const url = options.url;
19
const client = options.client;
20
+ const region = options.region || null;
21
+
22
23
return ScriptCache({
24
google: GoogleApi({
@@ -25,7 +27,8 @@ const defaultCreateCache = options => {
25
27
libraries: libraries,
26
28
version: version,
29
url: url,
- client: client
30
+ client: client,
31
+ region: region
32
})
33
});
34
};
0 commit comments