Skip to content

Instantly share code, notes, and snippets.

@Alexisvt
Forked from marshallswain/launch.json
Created July 1, 2019 20:10
Show Gist options
  • Save Alexisvt/9f857269429baf6b3c4f26e2d3221bb4 to your computer and use it in GitHub Desktop.
Save Alexisvt/9f857269429baf6b3c4f26e2d3221bb4 to your computer and use it in GitHub Desktop.
Setting up Visual Studio Code to work with Nuxt.js
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "npm run dev",
"runtimeExecutable": "npm",
"windows": {
"runtimeExecutable": "npm.cmd"
},
"runtimeArgs": [
"run",
"dev-debug"
],
"port": 5858
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/start"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Port",
"address": "localhost",
"port": 5858
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment