From 84464db0e0370845fb96636f6e862c044dd55ab8 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Sun, 3 Dec 2023 18:51:37 -0500 Subject: [PATCH] Frontend dev environment now uses non-prod mode by default --- angular.json | 2 +- src/environments/environment.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/angular.json b/angular.json index 458de51..d84522d 100644 --- a/angular.json +++ b/angular.json @@ -70,7 +70,7 @@ "localize": ["es"] } }, - "defaultConfiguration": "" + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 4f0114a..b7f639a 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -4,5 +4,5 @@ // The list of which env maps to which file can be found in `.angular-cli.json`. export const environment = { - production: true + production: false };