Files
angular-challenges/apps/angular/pipe-intermediate/src/main.ts
2023-10-18 14:08:15 +02: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));