Files

7 lines
250 B
TypeScript
Raw Permalink Normal View History

2026-03-26 16:10:45 +01:00
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));