import { bootstrapApplication } from '@angular/platform-browser'; import { appConfig } from './app/app.config'; import { AppComponent } from './app/app.component'; import { applyPolyfills, defineCustomElements } from '@amalitech-design-system/core/loader'; bootstrapApplication(AppComponent, appConfig) .catch((err) => console.error(err)); applyPolyfills().then(() => { defineCustomElements(window); });