Skip to content

Commit 9309979

Browse files
authored
Merge pull request MicrosoftDocs#55783 from rickvdbosch/patch-1
Fixed Angular example for Custom Build Command
2 parents 541bb46 + 2a01596 commit 9309979

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/static-web-apps/github-actions-workflow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ The deployment always calls `npm install` before any custom command.
147147

148148
| Command | Description |
149149
|---------------------|-------------|
150-
| `app_build_command` | Defines a custom command to run during deployment of the static content application.<br><br>For example, to configure a production build for an Angular application enter `ng build --prod`. If left blank, the workflow tries to run the `npm run build` or `npm run build:Azure` commands. |
150+
| `app_build_command` | Defines a custom command to run during deployment of the static content application.<br><br>For example, to configure a production build for an Angular application create an npm script named `build-prod` to run `ng build --prod` and enter `npm run build-prod` as the custom command. If left blank, the workflow tries to run the `npm run build` or `npm run build:Azure` commands. |
151151
| `api_build_command` | Defines a custom command to run during deployment of the Azure Functions API application. |
152152

153153
## Route file location

0 commit comments

Comments
 (0)