I am new to vscode.
My Problem may seem stupid.
I have 3 files: index.html, index.js and index.css.
i have the chrome debugging extension installed and cant figure out how to run my code
If i want to run / debug i am getting this error in chrome
i am sure problem is with the launch.json file. Here it is:
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
what i want is the index.html to be launched
