Skip to content

Commit

Permalink
chore: simplify configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Schwanz committed Nov 5, 2024
1 parent 07a3428 commit a432074
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,30 @@
"configurations": {
"regular": {
"outputPath": "dist",
"aot": true,
"serviceWorker": false,
"ngswConfigPath": "src/ngsw-config.json",
"optimization": {
"scripts": true,
"styles": {
"minify": true,
"inlineCritical": false
},
"fonts": true
}
},
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": false,
"extractLicenses": false,
"vendorChunk": false,
"buildOptimizer": false,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
],
"serviceWorker": false,
"ngswConfigPath": "src/ngsw-config.json"
},
"regular-production": {
"outputPath": "dist",
Expand Down Expand Up @@ -228,5 +241,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}

0 comments on commit a432074

Please sign in to comment.