dcb-backoffice/src/main.ts

7 lines
252 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { App } from './app/app';
import { appConfig } from './app/app.config';
bootstrapApplication(App, appConfig)
.catch(err => console.error('❌ BO Admin bootstrap error', err));