diff --git a/.vscode/launch.json b/.vscode/launch.json index aa12976..a218a08 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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"] } ] }