Administration/src/main.ts
Snoweuph 888f218811
Some checks failed
Build Application / build (push) Failing after 16s
Build Application / build-docker (push) Has been skipped
Build Application / release (push) Has been skipped
Quality Check / Linting (push) Successful in 22s
CHORE: setup
2025-02-02 15:58:18 +01:00

6 lines
250 B
TypeScript

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