Files
teamwallet/myteamwallet_frontend_modern/src/main.ts
Bastian Wagner b21641f37a ag grid
2026-08-03 14:49:35 +02:00

9 lines
428 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { App } from './app/app';
// AG Grid's community modules are registered from cashbox.ts instead of
// here, so their (sizable) code only loads as part of that lazy route chunk
// rather than bloating the eagerly-loaded initial bundle.
bootstrapApplication(App, appConfig).catch((err) => console.error(err));