-
-
Save Alexisvt/9f857269429baf6b3c4f26e2d3221bb4 to your computer and use it in GitHub Desktop.
Setting up Visual Studio Code to work with Nuxt.js
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "npm run dev", | |
"runtimeExecutable": "npm", | |
"windows": { | |
"runtimeExecutable": "npm.cmd" | |
}, | |
"runtimeArgs": [ | |
"run", | |
"dev-debug" | |
], | |
"port": 5858 | |
}, | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", | |
"program": "${workspaceRoot}/start" | |
}, | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Attach to Port", | |
"address": "localhost", | |
"port": 5858 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment