I'd like to use the indexTransform functionality in an angular 8 (angular-cli) project, but the configuration property of targetOptions remains empty.
I've tried the example project here: https://github.com/just-jeb/angular-builders/tree/master/packages/custom-webpack/examples/full-cycle-app
But in the example project the configuration is empty, too.
module.exports = (targetOptions, indexHtml) => {
targetOptions.configuration // configuration is empty
}
Where can I define the configuration that should be passed into the callback function?