Created
December 25, 2019 00:40
-
-
Save bcnzer/cb05d6bb088760811f366d54cbd8f7f4 to your computer and use it in GitHub Desktop.
VS Code launch.json to enable debugging of Nuxt.js apps. Note a further change is required in your nuxt.config.js
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "client: chrome", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceFolder}", | |
"sourceMapPathOverrides": { | |
"webpack:///*": "${workspaceRoot}/*" | |
} | |
}, | |
{ | |
"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"] | |
} | |
] | |
} |
@aluferraz Thanks a lot for the information! It works also on the latest version! ❤️
hmm this config allow me only to debug the app.js file :( all breakpoints stop in the app.js
hmm this config allow me only to debug the app.js file :( all breakpoints stop in the app.js
Same issue here, have yet to get this to work.
From :
https://nuxt.com/docs/guide/going-further/debugging
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"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",
"outputCapture": "std",
"program": "${workspaceFolder}/node_modules/nuxi/bin/nuxi.mjs",
"args": [
"dev"
],
}
],
"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
I've already extracted only the relevant part.. You must disable compact (on development env), specify the source root and build source maps (on development env)
This away you can use VSCode builtin debugger and debug async functions without a problem