Files
angular-challenges/apps/projection/src/main.ts
2022-11-03 15:37:58 +01:00

12 lines
315 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);