2025-12-06 08:46:55 +01:00
|
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
|
|
|
|
import { appConfig } from './app/app.config';
|
2025-12-06 11:38:19 +01:00
|
|
|
import { App } from './app/app';
|
2025-12-06 08:46:55 +01:00
|
|
|
|
2025-12-06 11:38:19 +01:00
|
|
|
bootstrapApplication(App, appConfig)
|
2025-12-06 08:46:55 +01:00
|
|
|
.catch((err) => console.error(err));
|