Skip to content

Commit

Permalink
unify angular builder to fix paths in container builds
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmattig committed Nov 22, 2024
1 parent dde5c9a commit f76c356
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"allowedCommonJsDependencies": [
"codemirror",
Expand All @@ -908,9 +908,10 @@
"moment",
"xml-utils"
],
"outputPath": "dist/dashboards/ecometrics",
"outputPath": {
"base": "dist/dashboards/ecometrics"
},
"index": "projects/dashboards/ecometrics/src/index.html",
"main": "projects/dashboards/ecometrics/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "projects/dashboards/ecometrics/tsconfig.app.json",
"inlineStyleLanguage": "scss",
Expand All @@ -930,7 +931,8 @@
"node_modules/codemirror/lib/codemirror.css",
"node_modules/ol/ol.css"
],
"scripts": []
"scripts": [],
"browser": "projects/dashboards/ecometrics/src/main.ts"
},
"configurations": {
"production": {
Expand Down Expand Up @@ -1009,7 +1011,7 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"allowedCommonJsDependencies": [
"codemirror",
Expand All @@ -1020,9 +1022,10 @@
"moment",
"xml-utils"
],
"outputPath": "dist/dashboards/esg-indicator-service",
"outputPath": {
"base": "dist/dashboards/esg-indicator-service"
},
"index": "projects/dashboards/esg-indicator-service/src/index.html",
"main": "projects/dashboards/esg-indicator-service/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "projects/dashboards/esg-indicator-service/tsconfig.app.json",
"inlineStyleLanguage": "scss",
Expand All @@ -1042,7 +1045,8 @@
"node_modules/codemirror/lib/codemirror.css",
"node_modules/ol/ol.css"
],
"scripts": []
"scripts": [],
"browser": "projects/dashboards/esg-indicator-service/src/main.ts"
},
"configurations": {
"production": {
Expand Down

0 comments on commit f76c356

Please sign in to comment.