Skip to content

Commit

Permalink
updated cli
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Aug 14, 2024
1 parent b384a02 commit 74d3547
Show file tree
Hide file tree
Showing 4 changed files with 4,879 additions and 3,059 deletions.
27 changes: 12 additions & 15 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@
"projectType": "application",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist",
"outputPath": {
"base": "dist"
},
"index": "src/index.html",
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"assets": [
"src/static/webapp",
"src/manifest.json"
Expand All @@ -29,14 +32,13 @@
],
"stylePreprocessorOptions": {
"includePaths": [
"./node_modules"
"./node_modules",
"."
]
},
"scripts": [
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": {
"scripts": true,
Expand All @@ -48,13 +50,12 @@
"inlineCritical": false
}
},
"namedChunks": true
"namedChunks": true,
"browser": "src/main.ts"
},
"configurations": {
"development": {
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
Expand All @@ -80,8 +81,6 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand Down Expand Up @@ -109,9 +108,7 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
"extractLicenses": true
}
},
"defaultConfiguration": "custom"
Expand Down
Loading

0 comments on commit 74d3547

Please sign in to comment.