docs: clarify documentation regarding passing multiple configurations to ng build (#41333)

Fixes #40923

PR Close #41333
This commit is contained in:
Chris 2021-03-24 13:06:00 +07:00 committed by Jessica Janiuk
parent 08628b45d3
commit 8fe40026c1
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ You can define and name additional alternate configurations (such as `stage`, fo
You can select an alternate configuration by passing its name to the `--configuration` command line flag.
You can also pass in more than one configuration name as a comma-separated list. For example, to apply both `stage` and `fr` build configurations, use the command `ng build --configuration stage,fr`. In this case, the command parses the named configurations from left to right. If multiple configurations change the same setting, the last-set value is the final one.
You can also pass in more than one configuration name as a comma-separated list. For example, to apply both `stage` and `fr` build configurations, use the command `ng build --configuration stage,fr`. In this case, the command parses the named configurations from left to right. If multiple configurations change the same setting, the last-set value is the final one. So in this example, if both `stage` and `fr` configurations set the output path the value in `fr` would get used.
{@a build-props}