Skip to content

Commit c869fc2

Browse files
committed
typo fixes from server.json to proper serve.json
1 parent 3b3d440 commit c869fc2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/spfx/extensions/get-started/build-a-hello-world-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ You cannot use the local Workbench to test SharePoint Framework Extensions. You
162162
This dialog is thrown by your SharePoint Framework Extension. Note that because you provided the `testMessage` property as part of the debug query parameters, it's included in the alert message. You can configure your extension instances based on the client component properties, which are passed for the instance in runtime mode.
163163
164164
> [!NOTE]
165-
> If you have issues with debugging, double-check the pageUrl setting in the **server.json** file.
165+
> If you have issues with debugging, double-check the pageUrl setting in the **serve.json** file.
166166
167167
## Next steps
168168

docs/spfx/extensions/get-started/building-simple-cmdset-with-dialog-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ You cannot currently use the local Workbench to test SharePoint Framework Extens
145145

146146
Because our ListView Command Set is hosted from localhost and is running, we can use specific debug query parameters to execute the code in the list view.
147147

148-
2. Open **serve.json** file from **config** folder. Update **pageUrl** attribute to match an URL of the list where you want to test the solution. After edits your server.json should look somewhat following.
148+
2. Open **serve.json** file from **config** folder. Update **pageUrl** attribute to match an URL of the list where you want to test the solution. After edits your serve.json should look somewhat following.
149149

150150
```json
151151
{
@@ -189,7 +189,7 @@ You cannot currently use the local Workbench to test SharePoint Framework Extens
189189

190190
When the code compiles without errors, it serves the resulting manifest from https://localhost:4321.
191191

192-
This will also start your default browser within the URL defined in **server.json** file. Notice that at least in Windows, you can control which browser window is used by activating the preferred one before executing this command.
192+
This will also start your default browser within the URL defined in **serve.json** file. Notice that at least in Windows, you can control which browser window is used by activating the preferred one before executing this command.
193193

194194
4. Accept the loading of debug manifests by selecting **Load debug scripts** when prompted.
195195

docs/spfx/extensions/get-started/building-simple-field-customizer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ You cannot currently use the local Workbench to test SharePoint Framework Extens
154154

155155
![Creating items in the newly created list with different values in the Percent field](../../../images/ext-field-create-items-to-list.png)
156156

157-
8. Move back to Visual Studio Code and open **serve.json** file from **config** folder. Update **InternalFieldName** attribute as **Percent** based on the field name, which we just created. Update also **pageUrl** attribute to match an URL of the list which we just created in preview steps. After edits your server.json should look somewhat following.
157+
8. Move back to Visual Studio Code and open **serve.json** file from **config** folder. Update **InternalFieldName** attribute as **Percent** based on the field name, which we just created. Update also **pageUrl** attribute to match an URL of the list which we just created in preview steps. After edits your serve.json should look somewhat following.
158158

159159
```json
160160
{
@@ -197,7 +197,7 @@ You cannot currently use the local Workbench to test SharePoint Framework Extens
197197

198198
![gulp serve](../../../images/ext-field-gulp-serve.png)
199199

200-
This will also start your default browser within the URL defined in **server.json** file. Notice that at least in Windows, you can control which browser window is used by activating the preferred one before executing this command.
200+
This will also start your default browser within the URL defined in **serve.json** file. Notice that at least in Windows, you can control which browser window is used by activating the preferred one before executing this command.
201201

202202
10. Accept the loading of debug manifests by selecting **Load debug scripts** when prompted.
203203

0 commit comments

Comments
 (0)