Last active
October 21, 2025 15:57
-
-
Save BananaAcid/d8722fd10d966eec2a47fbc7eec48d61 to your computer and use it in GitHub Desktop.
Nuxt 4 - .vscode/launch.json
This file contains hidden or 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
| { | |
| // 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