Skip to content

Commit 6b99a20

Browse files
committed
Clarity, remove references to webpack
1 parent 1f9edcb commit 6b99a20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/recipes/developing-and-testing/debug-safe-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In order to debug Server code from Visual Studio, we need set the correct URLs i
66
### Debugging the Server
77

88
#### 1. Configure launch settings
9-
You can do this through the Server project's **Properties/Debug** editor or by editing the `launchSettings.json` file which is in the **properties** folder.
9+
You can do this through the Server project's **Properties/Debug** editor or by editing the `launchSettings.json` file in `src/Server/Properties`
1010

1111
After selecting the debug profile that you wish to edit (**IIS Express** or **Server**), you will need to set the **App URL** field to `http://localhost:5000` and **Launch browser** field to `http://localhost:8080`. The process is [very similar](https://docs.microsoft.com/en-us/visualstudio/mac/launch-settings?view=vsmac-2019#configure-the-start-url) for VS Mac.
1212

@@ -57,7 +57,7 @@ However, we can still debug it via the magic of source mapping. If you are using
5757
The exact instructions will depend on your browser, but essentially it simply involves:
5858

5959
* Opening the Developer tools panel (usually by hitting F12).
60-
* Finding the F# file you want to add breakpoints to in the source of the website (look inside the webpack folder).
60+
* Finding the F# file you want to add breakpoints to in the source of the website.
6161
* Add breakpoints to it in your browser inspector.
6262

6363
## I'm using VS Code

0 commit comments

Comments
 (0)