Files
angular-challenges/apps/ngfor-enhancement/src/main.ts
thomas laforge 349a0cb00e typo
2022-11-05 21:05:00 +01:00

11 lines
349 B
TypeScript

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