The 'Run and Debug' feature in my Visual Studio Code just stopped working, so I had to refresh my memory on how to get it back up and running again, and thought it would make a useful post.
Steps
- Click 'Run and Debug' on the left taskbar
- Click 'create a launch.json file
- Choose your browser (e.g. Chrome)
- Remove existing curly brackets text, between the "configurations square brackets
- Click the blue 'Add Configuration' button
- Choose 'Chrome: Launch'
- Replace the "url" value with your localhost value, which you can grab from opening an html page in your project with Liver Server (right click html file and select Open with Liver Server). Mine was (is always?) http://127.0.0.1:5500/.
- Should be good to go!
Created: 17-Feb-2022