@nrwl/angular:delegate-build
Options for delegating a build to a different target.
Options can be configured in project.json
when defining the executor, or when invoking it. Read more about how to configure targets and executors here: https://nx.dev/reference/project-configuration#targets.
Examples
Delegate the build of the project to a different target.
{
"prod-build": {
"executor": "@nrwl/angular:delegate-build",
"options": {
"buildTarget": "app:build:production",
"outputPath": "dist/apps/app/production",
"tsConfig": "apps/app/tsconfig.json",
"watch": false
}
}
}