mvp-ticket/frontend/src/main.ts

8 lines
250 B
TypeScript
Raw Normal View History

2024-03-14 19:58:24 +01:00
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
2024-03-14 20:25:07 +01:00
bootstrapApplication(AppComponent, appConfig).catch((err) =>
console.error(err)
);