Files
gremiumhub/.vscode/launch.json
Denis Lugowski afec157b35
All checks were successful
CI/CD Pipeline / frontend (push) Successful in 5m52s
CI/CD Pipeline / backend (push) Successful in 7m58s
CI/CD Pipeline / deploy (push) Successful in 1s
major: Rename legalconsenthub to gremiumhub
2026-03-16 10:28:32 +01:00

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