Skip to content
This repository was archived by the owner on Dec 6, 2022. It is now read-only.

Commit 024dcce

Browse files
authored
Add vscode-recipes link
1 parent 8731dfd commit 024dcce

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ The extension operates in two modes - it can launch an instance of Chrome naviga
4848

4949
Just like when using the Node debugger, you configure these modes with a `.vscode/launch.json` file in the root directory of your project. You can create this file manually, or Code will create one for you if you try to run your project, and it doesn't exist yet.
5050

51+
> **Tip**: See recipes for debugging different frameworks here: https://github.com/Microsoft/vscode-recipes
52+
5153
### Launch
5254
Two example `launch.json` configs with `"request": "launch"`. You must specify either `file` or `url` to launch Chrome against a local file or a url. If you use a url, set `webRoot` to the directory that files are served from. This can be either an absolute path or a path using `${workspaceFolder}` (the folder open in Code). `webRoot` is used to resolve urls (like "http://localhost/app.js") to a file on disk (like `/Users/me/project/app.js`), so be careful that it's set correctly.
5355
```json

0 commit comments

Comments
 (0)