Skip to content

Instantly share code, notes, and snippets.

@selfagency
Created July 11, 2021 01:17
Show Gist options
  • Save selfagency/31298fb6048bc276d25cf02114548468 to your computer and use it in GitHub Desktop.
Save selfagency/31298fb6048bc276d25cf02114548468 to your computer and use it in GitHub Desktop.
[nuxt vscode debug config]
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "client: chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "server: nuxt",
"args": ["dev"],
"osx": {
"program": "${workspaceFolder}/node_modules/.bin/nuxt"
},
"linux": {
"program": "${workspaceFolder}/node_modules/.bin/nuxt"
},
"windows": {
"program": "${workspaceFolder}/node_modules/nuxt/bin/nuxt.js"
}
}
],
"compounds": [
{
"name": "fullstack: nuxt",
"configurations": ["server: nuxt", "client: chrome"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment