orc-shared 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils/buildUrl.js +1 -1
- package/package.json +1 -1
- package/src/utils/buildUrl.js +1 -1
package/dist/utils/buildUrl.js
CHANGED
|
@@ -47,7 +47,7 @@ var loadConfig = function loadConfig() {
|
|
|
47
47
|
}).catch(function () {
|
|
48
48
|
console.warn("Failed to load config.json, falling back to dev defaults");
|
|
49
49
|
return {
|
|
50
|
-
serviceApiUrl: "https://
|
|
50
|
+
serviceApiUrl: "https://occ-dev-ocs-cm.develop.orckestra.cloud:443/api"
|
|
51
51
|
};
|
|
52
52
|
}).then(function (config) {
|
|
53
53
|
var host = config.serviceApiUrl;
|
package/package.json
CHANGED
package/src/utils/buildUrl.js
CHANGED
|
@@ -21,7 +21,7 @@ export const loadConfig = () =>
|
|
|
21
21
|
.catch(() => {
|
|
22
22
|
console.warn("Failed to load config.json, falling back to dev defaults");
|
|
23
23
|
return {
|
|
24
|
-
serviceApiUrl: "https://
|
|
24
|
+
serviceApiUrl: "https://occ-dev-ocs-cm.develop.orckestra.cloud:443/api",
|
|
25
25
|
};
|
|
26
26
|
})
|
|
27
27
|
.then(config => {
|