Files
gremiumhub/.vscode/launch.json

29 lines
692 B
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:3001",
"webRoot": "${workspaceFolder}/legalconsenthub"
},
{
"request": "launch",
"name": "server: nuxt",
"outputCapture": "std",
"cwd": "${workspaceFolder}/legalconsenthub",
"type": "node-terminal",
"command": "npm run dev"
}
],
"compounds": [
{
"name": "fullstack: nuxt",
"configurations": ["server: nuxt", "client: chrome"]
}
]
}