2026-04-30 01:17:17 +04:00
|
|
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
2026-04-23 03:49:40 +04:00
|
|
|
|
import { appConfig } from './app/app.config';
|
|
|
|
|
|
import { App } from './app/app';
|
|
|
|
|
|
|
|
|
|
|
|
bootstrapApplication(App, appConfig)
|
|
|
|
|
|
.catch((err) => console.error(err));
|