Files
widget_templates/templates/site/index.js
2025-07-15 13:03:23 +02:00

14 lines
277 B
JavaScript

// ##RUNTIME_IMPORT##
import { bootstrap } from '@telia-ace/widget-core-flamingo';
// ##PLUGIN_IMPORTS##
(async () => {
bootstrap(
'##SITE_URL##',
(siteConfig) => {
siteConfig.applications.forEach((config) => {
// ##PLUGINS##
});
}
);
})();