mvp-ticket/frontend/src/main.ts

9 lines
251 B
TypeScript
Raw Normal View History

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