@elliemae/pui-app-sdk 5.23.0 → 5.23.1
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.
|
@@ -30,7 +30,9 @@ const getAppBridge = async () => {
|
|
|
30
30
|
const version = window.emui?.version || "latest";
|
|
31
31
|
appBridge = new import_pui_app_bridge.CAppBridge({
|
|
32
32
|
logger,
|
|
33
|
-
version
|
|
33
|
+
version,
|
|
34
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
35
|
+
appConfigBaseUrl: window?.emui?._ASSET_PATH
|
|
34
36
|
});
|
|
35
37
|
await appBridge.init();
|
|
36
38
|
}
|
|
@@ -7,7 +7,9 @@ const getAppBridge = async () => {
|
|
|
7
7
|
const version = window.emui?.version || "latest";
|
|
8
8
|
appBridge = new CAppBridge({
|
|
9
9
|
logger,
|
|
10
|
-
version
|
|
10
|
+
version,
|
|
11
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
12
|
+
appConfigBaseUrl: window?.emui?._ASSET_PATH
|
|
11
13
|
});
|
|
12
14
|
await appBridge.init();
|
|
13
15
|
}
|