Skip to content

Instantly share code, notes, and snippets.

@lxchurbakov
Created October 28, 2022 15:46
Show Gist options
  • Save lxchurbakov/3de1d18732b24106957a5b00ca0ef3f8 to your computer and use it in GitHub Desktop.
Save lxchurbakov/3de1d18732b24106957a5b00ca0ef3f8 to your computer and use it in GitHub Desktop.
launch.json
{
"configurations": [
{
"name": "Launch Frontend",
"request": "launch",
"runtimeArgs": [
"run-script",
"dev"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"name": "Launch Chrome at 1234",
"request": "launch",
"type": "chrome",
"url": "http://localhost:1234",
"webRoot": "${workspaceFolder}/frontend",
"sourceMaps": true,
"trace": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment