@@ -4,24 +4,24 @@ module.exports = function (frameRouter) {
4
4
frameRouter . clientConfig = {
5
5
clients : {
6
6
application1 : {
7
- url : `http:// ${ hostname } :8080 /client-app-1/#/` ,
7
+ url : `/clients /client-app-1/#/` ,
8
8
assignedRoute : "/app1" ,
9
9
} ,
10
10
application2 : {
11
11
// We are removing the built-in proxy route example for now, as there are conflicts with vite and
12
12
// we will be adding improvements to the proxy behavior in the near future
13
- url : `http:// ${ hostname } :8080 /client-app-2/#/` ,
13
+ url : `/clients /client-app-2/#/` ,
14
14
assignedRoute : "/app2" ,
15
- allow : "camera http://localhost:8080 ;" , // optional
15
+ allow : "camera self ;" , // optional
16
16
sandbox : "allow-presentation allow-modals" , // optional
17
17
defaultTitle : "iframe Application 2 Example" , // optional, but needed for accessibility
18
18
} ,
19
19
application3 : {
20
20
// We are removing the built-in proxy route example for now, as there are conflicts with vite and
21
21
// we will be adding improvements to the proxy behavior in the near future
22
- url : `http:// ${ hostname } :8080 /client-app-2/#/` ,
22
+ url : `/clients /client-app-2/#/` ,
23
23
assignedRoute : "/app2/test" ,
24
- allow : "camera http://localhost:8080 ;" , // optional
24
+ allow : "camera self ;" , // optional
25
25
sandbox : "allow-presentation allow-modals" , // optional
26
26
defaultTitle : "iframe Application 2 Example" , // optional, but needed for accessibility
27
27
} ,
0 commit comments