Skip to content

Commit 5cef5cc

Browse files
authored
Merge pull request #115530 from craigshoemaker/crs-swa-typos
Fix Static Web Apps typos
2 parents e357c4f + c876910 commit 5cef5cc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/static-web-apps/apis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ API endpoints are available to the web app through the _api_ route. While this r
2626

2727
Azure Static Web Apps provides an API through Azure Functions. The capabilities of Azure Functions are focused to a specific set of features that enable you to create an API for a web app and allow the web app to connect to API securely. These features come with some constraints, including:
2828

29-
- The API route prefix is must be _api_.
29+
- The API route prefix must be _api_.
3030
- Triggers and bindings are limited to [HTTP](../azure-functions/functions-bindings-http-webhook.md).
3131
- All other [Azure Functions triggers and bindings](../azure-functions/functions-triggers-bindings.md#supported-bindings) except for output bindings are restricted.
3232
- Logs are only available if you add [Application Insights](../azure-functions/functions-monitoring.md) to your Functions app.

articles/static-web-apps/custom-domain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ A CNAME record maps one domain to another. You can use a CNAME record to map `ww
7575

7676
1. Click the **Validate** button.
7777

78-
Now that the custom domain is configured, it may take several hours for the DNS provider to propagate he changes worldwide. You can check the status of the propagation by going to [dnspropagation.net](https://dnspropagation.net). Enter your domain custom domain including the `www`, select CNAME from the drop-down, and select **Start**.
78+
Now that the custom domain is configured, it may take several hours for the DNS provider to propagate he changes worldwide. You can check the status of the propagation by going to [dnspropagation.net](https://dnspropagation.net). Enter your custom domain including the `www`, select CNAME from the drop-down, and select **Start**.
7979

8080
If your DNS changes have populated, the website returns the auto-generated URL of your Static Web App (for instance, _random-name-123456789c.azurestaticapps.net_).
8181

@@ -87,7 +87,7 @@ While root domain support is not available during preview, you can see the blog
8787

8888
## Map a wildcard domain
8989

90-
Sometimes you want all traffic sent to a subdomain to route to another domain. A common example is mapping all subdomain traffic to `www.example.com`. This way, even if someone types `ww.example.com` instead of `www.example.com`, the request is sent to `www.example.com`.
90+
Sometimes you want all traffic sent to a subdomain to route to another domain. A common example is mapping all subdomain traffic to `www.example.com`. This way, even if someone types `w.example.com` instead of `www.example.com`, the request is sent to `www.example.com`.
9191

9292
### Configure DNS provider
9393

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ The deployment always calls `npm install` before any custom command.
145145

146146
| Command | Description |
147147
|---------------------|-------------|
148-
| `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. |
148+
| `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. |
149149
| `api_build_command` | Defines a custom command to run during deployment of the Azure Functions API application. |
150150

151151
## Route file location

0 commit comments

Comments
 (0)