2025-11-02 18:04:58 +00:00
|
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
|
|
|
|
import { appConfig } from './app/app.config';
|
2026-01-15 22:46:50 +00:00
|
|
|
import { AppComponent } from './app/app.component';
|
|
|
|
|
|
|
|
|
|
bootstrapApplication(AppComponent, appConfig)
|
2025-11-02 18:04:58 +00:00
|
|
|
.catch((err) => console.error(err));
|
2026-01-15 22:46:50 +00:00
|
|
|
|