Frontend dev environment now uses non-prod mode by default

This commit is contained in:
Isaac Abadi
2023-12-03 18:51:37 -05:00
parent 9556f9c94f
commit 84464db0e0
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@
"localize": ["es"]
}
},
"defaultConfiguration": ""
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",

View File

@@ -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
};