Skip to content

Instantly share code, notes, and snippets.

@jeffreyschultz
Created January 10, 2020 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffreyschultz/c5ba5337a4e3ddb2e31ec27ae066badc to your computer and use it in GitHub Desktop.
Save jeffreyschultz/c5ba5337a4e3ddb2e31ec27ae066badc to your computer and use it in GitHub Desktop.
Working VSCode launch config for WSL
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:3001",
"webRoot": "${workspaceFolder}/src",
"sourceMapPathOverrides": {
"top/localhost:3001/mnt/c/*": "C:/*",
"/mnt/c/*": "C:/*",
"file://mnt/c/*": "C:/*",
"webpack:///src/*": "${webRoot}/*"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment