Files
SkydiveLogs/Front/skydivelogs-app/src/main.ts
T
sandre 137b2ab1fc Update to Angular v19 and fixing (#3)
Reviewed-on: #3
Co-authored-by: sandre <perso@sebastienandre.com>
Co-committed-by: sandre <perso@sebastienandre.com>
2026-01-20 10:56:31 +00:00

16 lines
411 B
TypeScript

import { enableProdMode } from "@angular/core";
import { bootstrapApplication } from "@angular/platform-browser";
import { appConfig } from "./app/app.config";
import { AppComponent } from "./app/app.component";
import { environment } from "./environments/environment";
if (environment.production) {
enableProdMode();
}
bootstrapApplication(AppComponent, appConfig).catch((err) =>
console.error(err)
);