2024-12-18 09:35:34 +01:00
|
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
2024-12-18 13:54:40 +01:00
|
|
|
import { AppComponent } from '@app/app.component';
|
|
|
|
import { appConfig } from '@app/app.config';
|
2024-12-18 09:35:34 +01:00
|
|
|
|
|
|
|
bootstrapApplication(AppComponent, appConfig)
|
|
|
|
.catch((err) => console.error(err));
|