Skip to content

Commit

Permalink
AUS-3948 Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelBradley committed Jun 16, 2023
1 parent 8c22c77 commit 6e691b1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# IDE - VSCode
.vscode/*
!.vscode/settings.json
.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
Expand Down
32 changes: 15 additions & 17 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@
"index": "src/index.html",
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"optimization": {
"scripts": true,
"styles": {
"minify": true,
"inlineCritical": true
},
"fonts": true
},
"buildOptimizer": false,
"polyfills": "src/polyfills.ts",
"assets": [
"src/contexts",
Expand Down Expand Up @@ -84,14 +98,6 @@
"maximumWarning": "20kb"
}
],
"optimization": false,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand All @@ -103,17 +109,9 @@
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "20kb"
"maximumWarning": "50kb"
}
],
"optimization": false,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"ng": "ng",
"start": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng serve",
"build": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build",
"build-prod": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --configuration production --configuration=production",
"build-test": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --configuration production --configuration=au2",
"build-dev": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --configuration production --configuration=audev",
"build-prod": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --configuration=production",
"build-test": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --configuration=au2",
"build-dev": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --configuration=audev",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
Expand Down

0 comments on commit 6e691b1

Please sign in to comment.