16 lines
462 B
JSON
16 lines
462 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Launch Chrome against localhost",
|
|
"url": "http://localhost:8080", // Adjust the URL and port as needed
|
|
"webRoot": "${workspaceFolder}/src",
|
|
"sourceMaps": true,
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///src/*": "${webRoot}/*"
|
|
}
|
|
}
|
|
]
|
|
} |