From 6937a290e809c3f035a047066b5641af856d2b73 Mon Sep 17 00:00:00 2001 From: Michael Hoffman Date: Wed, 11 May 2022 20:27:51 -0700 Subject: [PATCH 1/2] Update README.md Added how to change "url" to Readme, b/c the instruction was hidden & unclear in the .json file. --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dff5e52..6d30ac9 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,14 @@ A quick demo of a bare vanilla JS todo app -Also there to show the functionality of the [Edge Developer Tools for VS Code](https://aka.ms/devtools-for-code) extension. \ No newline at end of file +In `launch.json`, replace the "url" string by the path for `index.html`; for example, in three places, change: +``` +"url": "c:\\Users\\myaccount\\.vscode\\extensions\\ms-edgedevtools.vscode-edge-devtools-1.4.7\\out\\startpage\\index.html", // Provide your project's url to finish configuring +``` +to: + +``` +"url": "C:\\Users\\myaccount\\Documents\\GitHub\\simple-to-do\\index.html", // Provide your project's url to finish configuring +``` + +Also there to show the functionality of the [Edge Developer Tools for VS Code](https://aka.ms/devtools-for-code) extension. From 9abd5d8328fd39a2f4a5ed05e29dfa442979e47e Mon Sep 17 00:00:00 2001 From: Michael Hoffman Date: Wed, 11 May 2022 20:38:59 -0700 Subject: [PATCH 2/2] Link directly to docs --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6d30ac9..bcbe574 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,5 @@ to: ``` Also there to show the functionality of the [Edge Developer Tools for VS Code](https://aka.ms/devtools-for-code) extension. + +See [Microsoft Edge DevTools extension for Visual Studio Code](https://docs.microsoft.com/microsoft-edge/visual-studio-code/microsoft-edge-devtools-extension).