This repository has been archived on 2025-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
ems-frontend/src/main.ts
2024-09-04 11:11:22 +02:00

7 lines
250 B
TypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));