I have a very simple HTML app which has associated CSS/JS. I was wondering how would I configure launch.json in VSCode (Running in Github Codespaces) to run as a basic webroot server.
Currently I have
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome against localhost, with sourcemaps",
"type": "msedge",
"request": "launch",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/workspaces/mchaptics-gui/mcapp"
}
]
}
I tried modifying the url to "http://codespaces-UIDUIDUID.github.dev:8080", but that seems to also not help the situation.