2025-11-18 00:03:24 +00:00
|
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
2025-11-24 19:52:35 +00:00
|
|
|
import { appConfig } from './app/app.config';
|
2025-11-18 00:03:24 +00:00
|
|
|
import { AppComponent } from './app/app.component';
|
|
|
|
|
|
2025-11-24 19:52:35 +00:00
|
|
|
bootstrapApplication(AppComponent, appConfig)
|
|
|
|
|
.catch((err) => console.error(err));
|