Skip to content

Commit f6943b3

Browse files
authored
Merge pull request #288 from purecloudlabs/fix-proxy-config
fix(ifc-cli): fix incorrect default data that failed when no proxy co…
2 parents ffba9f0 + b036203 commit f6943b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/iframe-coordinator-cli/ifc-cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ function getSslOpts(certPath, keyPath) {
225225

226226
function loadConfig(path) {
227227
if (!path) {
228-
return [];
228+
return { proxies: [], static: [] };
229229
}
230230

231231
const rawConfig = JSON.parse(fs.readFileSync(path).toString());

packages/iframe-coordinator-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"express": "^4.21.1",
1111
"find-root": "^1.1.0",
1212
"http-proxy-middleware": "^3.0.3",
13-
"iframe-coordinator": "6.1.0",
13+
"iframe-coordinator": "6.2.0",
1414
"vue": "^2.7.16",
1515
"vue-class-component": "^7.2.6",
1616
"vue-notification": "^1.3.20",

0 commit comments

Comments
 (0)