Created
October 28, 2022 15:46
-
-
Save lxchurbakov/3de1d18732b24106957a5b00ca0ef3f8 to your computer and use it in GitHub Desktop.
launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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