You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/static-web-apps/faq.yml
+7-12Lines changed: 7 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ metadata:
6
6
author: craigshoemaker
7
7
ms.topic: faq
8
8
ms.service: static-web-apps
9
-
ms.date: 10/23/2021
9
+
ms.date: 06/25/2024
10
10
ms.author: cshoe
11
11
title: Azure Static Web Apps Frequently Asked Questions
12
12
@@ -26,7 +26,7 @@ sections:
26
26
- question: |
27
27
What happens during the build process?
28
28
answer: |
29
-
Azure Static Web Apps' build engine is powered by [Oryx](https://github.com/microsoft/Oryx), which builds your app's frontend and API.
29
+
The Azure Static Web Apps build engine is powered by [Oryx](https://github.com/microsoft/Oryx), which builds your app's frontend and API.
30
30
31
31
When your app is built, Oryx detects the build steps and executes them automatically. For example, if your app uses Node.js, it installs packages using npm or Yarn. Then, it runs the `build` or `build:azure` script provided in your app's _package.json_ file.
32
32
@@ -35,13 +35,8 @@ sections:
35
35
answer: |
36
36
If you want complete control over how to build your app, you can configure your own build steps in your app's GitHub workflow or Azure DevOps pipeline. You can then use the Static Web Apps GitHub Actions or Azure Pipelines task to deploy your app. Ensure that you set `skip_app_build` to `true`. To learn more, see [Build configuration](build-configuration.md?skip-building-front-end-app).
37
37
38
-
The `skip_app_build` command is currently only supported for the frontend app. The API app must be built by the Azure Static Web Apps GitHub Actions or Azure Pipelines task.
39
-
40
-
- question: |
41
-
Can I deploy my app without using GitHub Actions or Azure DevOps?
42
-
answer: |
43
-
Currently, Azure Static Web Apps supports GitHub Actions and Azure DevOps. More deployment options will be added in the future.
44
-
38
+
The `skip_app_build` command is only supported for frontend apps. The API app must be built by the Azure Static Web Apps GitHub Actions or Azure Pipelines task.
39
+
45
40
- question: |
46
41
My React application fails to build with the message “Treating warnings as errors because process.env.CI = true”. How do I fix this error?
47
42
answer: |
@@ -74,7 +69,7 @@ sections:
74
69
- question: |
75
70
Do I have to run the Static Web Apps action/task on a Linux GitHub Actions or Azure Pipelines build agent?
76
71
answer: |
77
-
Azure Static Web Apps' build engine runs in a Linux Docker container, so it can only be run on a Linux build agent.
72
+
The Azure Static Web Apps build engine runs in a Linux Docker container, so it can only be run on a Linux build agent.
78
73
79
74
- question: |
80
75
How do I deploy an app that uses Git Large File Storage (LFS)?
@@ -167,7 +162,7 @@ sections:
167
162
- question: |
168
163
Am I limited to using a single identity provider?
169
164
answer: |
170
-
When using Static Web Apps' built-in authentication, users can log in with any of the supported identity providers. If you want to prevent users from logging in with a specific identity provider, you can [block it](authentication-authorization.yml?#block-an-authentication-provider).
165
+
When using the Static Web Apps built-in authentication, users can log in with any of the supported identity providers. If you want to prevent users from logging in with a specific identity provider, you can [block it](authentication-authorization.yml?#block-an-authentication-provider).
171
166
172
167
If you're using [custom authentication](authentication-custom.md), you can configure one or more identity providers.
173
168
@@ -176,7 +171,7 @@ sections:
176
171
- question: |
177
172
How do I write my APIs using a language or language version that Static Web Apps doesn’t support?
178
173
answer: |
179
-
Static Web Apps' managed function apps don't support all languages or language versions that Azure Functions supports. You can use the [bring your own Functions app](functions-bring-your-own.md) feature to link a separate Functions app to your Static Web App.
174
+
The Static Web Apps managed function apps don't support all languages or language versions that Azure Functions supports. You can use the [bring your own Functions app](functions-bring-your-own.md) feature to link a separate Functions app to your Static Web App.
180
175
181
176
- question: |
182
177
How do I create serverless functions that respond to events other than HTTP?
0 commit comments