9 lines
428 B
TypeScript
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));
|