Files
widget_templates/templates/site/index.js
2025-06-26 13:38:07 +02:00

21 lines
420 B
JavaScript

// ##RUNTIME_IMPORT##
import { bootstrap, createHttpClient } from '@telia-ace/widget-core-flamingo';
// ##PLUGIN_IMPORTS##
(async () => {
const client = createHttpClient('https://widgets-dev.ace.teliacompany.net/v1');
bootstrap(
'##SITE_URL##',
(siteConfig) => {
siteConfig.applications.forEach((config) => {
// ##PLUGINS##
});
},
{
httpClient: client,
},
);
})();