Skip to content

Instantly share code, notes, and snippets.

@BananaAcid
Last active October 21, 2025 15:57
Show Gist options
  • Save BananaAcid/d8722fd10d966eec2a47fbc7eec48d61 to your computer and use it in GitHub Desktop.
Save BananaAcid/d8722fd10d966eec2a47fbc7eec48d61 to your computer and use it in GitHub Desktop.
Nuxt 4 - .vscode/launch.json
{
// 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",
"skipFiles": ["<node_internals>/**"],
"localRoot": "${workspaceFolder}",
"program": "${workspaceFolder}/node_modules/nuxt/bin/nuxt.mjs",
"args": [
"--port", "3000"
"--host",
"dev"
],
"console": "integratedTerminal",
"internalConsoleOptions": "openOnSessionStart",
"env": {
"DEBUG_LOGGEDINASADMIN": "false"
}
}
],
"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