debugging with vscode-chrome-debugger

This commit is contained in:
Niel 2019-02-07 22:15:30 +01:00
parent 9c57ed8266
commit c38135d677
2 changed files with 16 additions and 0 deletions

1
.env Normal file
View file

@ -0,0 +1 @@
BROWSER=none

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}/src",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}