137b2ab1fc
Reviewed-on: #3 Co-authored-by: sandre <perso@sebastienandre.com> Co-committed-by: sandre <perso@sebastienandre.com>
16 lines
411 B
TypeScript
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)
|
|
);
|