Files
2025-07-15 13:03:23 +02:00

28 lines
558 B
JavaScript

// ##RUNTIME_IMPORT##
import { bootstrap } from '@telia-ace/widget-core-flamingo';
// ##PLUGIN_IMPORTS##
const client = createHttpClient('https://widgets.ace.teliacompany.net/v1');
(async () => {
bootstrap(
{
httpClient: client,
apps: [
{
renderStrategy: 'trigger',
autoActivate: true,
widgetId: '##WIDGET_ID##',
triggerIcon: 'question',
},
],
},
(siteConfig) => {
siteConfig.applications.forEach((config) => {
// ##PLUGINS##
});
}
);
})();