Skip to content

Instantly share code, notes, and snippets.

@marshallswain
Last active July 1, 2019 20:10
Show Gist options
  • Save marshallswain/2f76f67a88832b72a4622f9c4eb4c3be to your computer and use it in GitHub Desktop.
Save marshallswain/2f76f67a88832b72a4622f9c4eb4c3be 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