Skip to content

Commit

Permalink
Merge pull request #201 from DuendeSoftware/roland/bffangularupdate
Browse files Browse the repository at this point in the history
Update BFF example to Angular 18
  • Loading branch information
josephdecock committed Aug 13, 2024
2 parents 6c718b9 + 562431e commit 9b7fdf7
Show file tree
Hide file tree
Showing 6 changed files with 4,940 additions and 3,639 deletions.
18 changes: 9 additions & 9 deletions IdentityServer/v7/BFF/Angular/angular.client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/angular.client",
"outputPath": {
"base": "dist/angular.client"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": [
"zone.js"
],
Expand All @@ -28,7 +29,8 @@
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
"scripts": []
"scripts": [],
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -47,9 +49,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand All @@ -61,10 +61,10 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "angular.client:build:production"
"buildTarget": "angular.client:build:production"
},
"development": {
"browserTarget": "angular.client:build:development"
"buildTarget": "angular.client:build:development"
}
},
"defaultConfiguration": "development",
Expand All @@ -75,7 +75,7 @@
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "angular.client:build"
"buildTarget": "angular.client:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit 9b7fdf7

Please sign in to comment.