10 lines
500 B
JavaScript
10 lines
500 B
JavaScript
'use strict';
|
|
(function configureLinkFieldRuntime(root){
|
|
let appBaseUrl='',apiBridgeUrl='';
|
|
try{
|
|
const scriptUrl=root.document?.currentScript?.src||root.location?.href||'';
|
|
appBaseUrl=new URL('./',scriptUrl).href;
|
|
apiBridgeUrl=new URL('api-bridge.php',appBaseUrl).href;
|
|
}catch(_){appBaseUrl='';apiBridgeUrl=''}
|
|
root.BendRuntimeConfig=Object.freeze({cloudApi:true,singleSharedWorld:true,worldId:'link-field-main',appBaseUrl,apiBridgeUrl,realtimeTransport:'auto'});
|
|
})(globalThis);
|