Skip to content

Instantly share code, notes, and snippets.

@ravecat
Last active February 22, 2021 09:43
Show Gist options
  • Save ravecat/df8547480e380b0705a02b1f45f5b23a to your computer and use it in GitHub Desktop.
Save ravecat/df8547480e380b0705a02b1f45f5b23a to your computer and use it in GitHub Desktop.
ide, vscode, debugging
{
"type": "chrome",
"request": "launch",
"name": "chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
{
"name": "firefox",
"type": "firefox",
"request": "launch",
"reAttach": true,
"file": "${workspaceFolder}/index.html"
}
{
"type": "chrome",
"request": "launch",
"name": "storybook",
"url": "http://localhost:9000",
"sourceMaps": true,
"webRoot": "${workspaceFolder}",
"sourceMapPathOverrides": {
"webpack:///*": "${webRoot}/*",
"webpack:///./*": "${webRoot}/*",
"webpack:///src/*": "${webRoot}/*",
"webpack:///./~/*": "${webRoot}/node_modules/*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment