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