// MUST be the very first import — see apps/portal-shell/src/observability/tracing.ts // for the reasoning. The auto-instrumentations patch `fetch`, // `XMLHttpRequest`, and `addEventListener` at module-load time; // anything imported above this line escapes that patching. import './observability/tracing'; import { bootstrapApplication } from '@angular/platform-browser'; import { appConfig } from './app/app.config'; import { App } from './app/app'; bootstrapApplication(App, appConfig).catch((err) => console.error(err));