Skip to content

Commit 0264094

Browse files
updates
1 parent 6917532 commit 0264094

File tree

1 file changed

+17
-20
lines changed

1 file changed

+17
-20
lines changed

articles/static-web-apps/getting-started.md

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ If you don't already have the [Azure Static Web Apps extension for Visual Studio
3737
1. Select **View** > **Extensions**.
3838
1. In the **Search Extensions in Marketplace**, type **Azure Static Web Apps**.
3939
1. Select **Install** for **Azure Static Web Apps**.
40-
1. The extension installs into Visual Studio Code.
4140

4241
## Create a static web app
4342

@@ -54,8 +53,6 @@ If you don't already have the [Azure Static Web Apps extension for Visual Studio
5453

5554
1. Select *Azure Static Web Apps: Create static web app...*.
5655

57-
1. Select configuration values based on choice of framework.
58-
5956
1. Select your Azure subscription.
6057

6158
1. Enter **my-first-static-web-app** for the application name.
@@ -68,56 +65,56 @@ If you don't already have the [Azure Static Web Apps extension for Visual Studio
6865

6966
| Setting | Value |
7067
| --- | --- |
71-
| Framework | Select **Custom**. |
72-
| Location of application code | Enter **/src**. |
73-
| Build location | Enter **/src**. |
68+
| Framework | Select **Custom** |
69+
| Location of application code | Enter `/src` |
70+
| Build location | Enter `/src` |
7471

7572
# [Angular](#tab/angular)
7673

7774
| Setting | Value |
7875
| --- | --- |
79-
| Framework | Select **Angular**. |
80-
| Location of application code | Enter **/**. |
81-
| Build location | Enter **dist/angular-basic**. |
76+
| Framework | Select **Angular** |
77+
| Location of application code | Enter `/` |
78+
| Build location | Enter `dist/angular-basic` |
8279

8380
# [Blazor](#tab/blazor)
8481

8582
| Setting | Value |
8683
| --- | --- |
87-
| Framework | Select **Blazor**. |
88-
| Location of application code | Enter **Client**. |
89-
| Build location | Enter **wwwroot**. |
84+
| Framework | Select **Blazor** |
85+
| Location of application code | Enter `Client` |
86+
| Build location | Enter `wwwroot` |
9087

9188
# [React](#tab/react)
9289

9390
| Setting | Value |
9491
| --- | --- |
95-
| Framework | Select **React**. |
96-
| Location of application code | Enter **/**. |
97-
| Build location | Enter **build**. |
92+
| Framework | Select **React** |
93+
| Location of application code | Enter `/` |
94+
| Build location | Enter `build` |
9895

9996
# [Vue](#tab/vue)
10097

10198
| Setting | Value |
10299
| --- | --- |
103-
| Framework | Select **Vue.js**. |
104-
| Location of application code | Enter **/**. |
105-
| Build location | Enter **dist**. |
100+
| Framework | Select **Vue.js** |
101+
| Location of application code | Enter `/` |
102+
| Build location | Enter `dist` |
106103

107104
---
108105

109106
1. Once the app is created, a confirmation notification is shown in Visual Studio Code.
110107

111108
:::image type="content" source="media/getting-started/extension-confirmation.png" alt-text="Created confirmation":::
112109

110+
If GitHub presents you with a button labeled **Enable Actions on this repository**, select the button to allow the build action to run on your repository.
111+
113112
As the deployment is in progress, the Visual Studio Code extension reports the build status to you.
114113

115114
:::image type="content" source="media/getting-started/extension-waiting-for-deployment.png" alt-text="Waiting for deployment":::
116115

117116
Once the deployment is complete, you can navigate directly to your website.
118117

119-
If GitHub presents you with a button labeled **Enable Actions on this repository**, select the button to allow the build action to run on your repository.
120-
121118
1. To view the website in the browser, right-click the project in the Static Web Apps extension, and select **Browse Site**.
122119

123120
:::image type="content" source="media/getting-started/extension-browse-site.png" alt-text="Browse site":::

0 commit comments

Comments
 (0)