Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Mar 20, 2024
1 parent 0f9f63b commit c9a30e2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/demo/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import {enableProdMode} from '@angular/core';
import {bootstrapApplication} from '@angular/platform-browser';

import {AppComponent} from './app/app.component';
import {appConfig} from './app/app.config';
import {environment} from './environments/environment';

if (environment.production) {
enableProdMode();
}

bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err));

0 comments on commit c9a30e2

Please sign in to comment.