
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
ajcrites-custom-webpack-tester
Advanced tools
Custom webpack builders for Angular build facade. Allow to modify Angular build configuration without ejecting it
Allow customizing build configuration without ejecting webpack configuration (ng eject)
npm i -D @angular-builders/custom-webpackangular.json:
"projects": {
...
"[project]": {
...
"architect": {
...
"[architect-target]": {
"builder": "@angular-builders/custom-webpack:[browser|server|karma]"
"options": {
...
}
Where:
[architect-target] is not one of the predefined targets (like build, serve, test etc.) then run it like this:ng run [project]:[architect-target]ng [architect-target]"projects": {
...
"example-app": {
...
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:browser"
"options": {
...
}
ng buildExtended @angular-devkit/build-angular:browser builder that allows to specify additional webpack configuration (on top of the existing under the hood).
The builder will run the same build as @angular-devkit/build-angular:browser does with extra parameters that are specified in the provided webpack configuration.
Builder options:
@angular-devkit/build-angular:browser optionscustomWebpackConfig: see belowangular.json Example:
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:browser"
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js",
"mergeStrategies": { "externals": "replace" }
}
"outputPath": "dist/my-cool-client",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json"
}
In this example externals entry from extra-webpack.config.js will replace externals entry from Angular CLI underlying webpack config.
Extended @angular-devkit/build-angular:server builder that allows to specify additional webpack configuration (on top of the existing under the hood).
The builder will run the same build as @angular-devkit/build-angular:server does with extra parameters that are specified in the provided webpack configuration.
Builder options:
@angular-devkit/build-angular:server optionscustomWebpackConfig: see belowangular.json Example:
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:server"
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js",
"mergeStrategies": { "module.rules": "prepend" },
"replaceDuplicatePlugins": true
}
"outputPath": "dist/my-cool-server",
"main": "src/main.server.ts",
"tsConfig": "src/tsconfig.server.json"
}
In this example module.rules entry from extra-webpack.config.js will be prepended to module.rules entry from Angular CLI underlying webpack config.
Since loaders are evaluated from right to left this will effectively mean that the loaders you define in your custom configuration will be applied after the loaders defined by Angular CLI.
Extended @angular-devkit/build-angular:karma builder that allows to specify additional webpack configuration (on top of the existing under the hood).
The builder will run the same build as @angular-devkit/build-angular:karma does with extra parameters that are specified in the provided webpack configuration.
Builder options:
@angular-devkit/build-angular:karma optionscustomWebpackConfig: see belowangular.json Example:
"architect": {
...
"test": {
"builder": "@angular-builders/custom-webpack:karma"
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
}
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
...
}
This object defines your custom webpack configuration. It is defined by the following properties:
path: path to the extra webpack configuration, defaults to webpack.config.js.
Notice that this configuration shall contain only modifications and additions, you don't have to specify the whole webpack configuration.
Thus, if you'd like to add some options to style-loader (which already there because of default Angular configuration), you only have to specify this part of the loader:
{
test: /\.css$/,
use: [
{loader: 'style-loader', options: {...}}
]
}
The builder will take care of merging the delta with the existing configuration provided by Angular.
mergeStrategies: webpack config merge strategies, can be append | prepend | replace per webpack config entry. Defaults to append.
append: appends the given entry configuration (in custom webpack config) to the existing Angular CLI webpack configuration.prepend: prepends the given entry configuration (in custom webpack config) to the existing field configuration (in Angular CLI webpack config). The custom loaders config will be added to the beginning of the existing loaders array.replace: replaces the given entry configuration entirely. The custom webpack config will replace the Angular CLI webpack config (for this particular entry).
See webpack-merge for more info.replaceDuplicatePlugins: Defaults to false. If true, the plugins in custom webpack config will replace the corresponding plugins in default Angular CLI webpack configuration. If false, the default behavior will be applied.
Note that if true, this option will override mergeStrategies for plugins field.
If in your custom configuration you specify a plugin that is already added by Angular CLI then by default the two instances will be merged.
In case of the conflicts your configuration will override the existing one.
Thus, if you'd like to modify an existing plugin configuration, all you have to do is specify the delta you want to change.
For example, if you'd like to add an additional entry in excludeChunks list of HtmlWebpackPlugin you only have to specify this single entry:
new HtmlWebpackPlugin({
"excludeChunks": [
"webworker"
]
})
Keep in mind though that if there are default values in the plugin's constructor, they would override the corresponding values in the existing instance. So these you have to set explicitly to the same values Angular sets.
You can check out an example for plugins merge in the unit tests and in this issue.
FAQs
Custom webpack builders for Angular build facade. Allow to modify Angular build configuration without ejecting it
We found that ajcrites-custom-webpack-tester demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.