chore(workspace): change launch.json to launch vivaldi

This commit is contained in:
parent 10fad65823
commit b0d799ec69
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

9
.vscode/launch.json vendored

@ -5,9 +5,10 @@
"configurations": [
{
"type": "chrome",
"runtimeExecutable": "C:\\Program Files\\Vivaldi\\Application\\vivaldi.exe",
"request": "launch",
"name": "client: chrome",
"url": "http://localhost:3001",
"name": "client: vivaldi",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
@ -16,13 +17,13 @@
"name": "server: nuxt",
"outputCapture": "std",
"program": "${workspaceFolder}/node_modules/nuxi/bin/nuxi.mjs",
"args": ["dev"]
"args": ["dev", "--host", "127.0.0.1"]
}
],
"compounds": [
{
"name": "fullstack: nuxt",
"configurations": ["server: nuxt", "client: chrome"]
"configurations": ["server: nuxt", "client: vivaldi"]
}
]
}