Skip to content

Instantly share code, notes, and snippets.

@dylankelly
Created October 26, 2021 21:43
Show Gist options
  • Select an option

  • Save dylankelly/551682dd7c51a1b042c8e0e0d6c6b7fc to your computer and use it in GitHub Desktop.

Select an option

Save dylankelly/551682dd7c51a1b042c8e0e0d6c6b7fc to your computer and use it in GitHub Desktop.
VS Code Nuxt debug config
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to Nuxt",
"port": 9229
},
{
"type": "chrome",
"request": "launch",
"name": "client: chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment