From 31366de7a6d7d41d24e26a16a536a96c5ccffdea Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 11 Jul 2023 20:43:01 +0200 Subject: [PATCH] fix(crud): fix crud --- apps/crud/src/main.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/crud/src/main.ts b/apps/crud/src/main.ts index 583a488..ea9f26c 100644 --- a/apps/crud/src/main.ts +++ b/apps/crud/src/main.ts @@ -2,11 +2,6 @@ import { appConfig } from './app/app.config'; import { bootstrapApplication } from '@angular/platform-browser'; import { AppComponent } from './app/app.component'; -import { environment } from './environments/environment'; - -if (environment.production) { - enableProdMode(); -} bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err)