This commit is contained in:
Ben Wilson
2023-06-21 13:55:23 -04:00
parent 50a48c5dae
commit 6d4e30ddee
2 changed files with 7 additions and 1 deletions

View File

@@ -43,6 +43,12 @@
}, },
"configurations": { "configurations": {
"production": { "production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"budgets": [ "budgets": [
{ {
"type": "initial", "type": "initial",

View File

@@ -4,7 +4,7 @@
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve --proxy-config proxy.config.local.json ", "start": "ng serve --proxy-config proxy.config.local.json ",
"build": "ng build --env=prod --base-href /public-pool-ui/", "build": "ng build --base-href /public-pool-ui/",
"watch": "ng build --watch --configuration development", "watch": "ng build --watch --configuration development",
"test": "ng test" "test": "ng test"
}, },