From 3b7eb4822e3e1031d50c0518f073ddc244596375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Fri, 1 Dec 2023 17:52:00 -0500 Subject: [PATCH] chore(workspace): edit launch.json we're now using firefox :) --- .vscode/launch.json | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index a218a08..7426ab4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,12 +4,26 @@ "version": "0.2.0", "configurations": [ { - "type": "chrome", - "runtimeExecutable": "C:\\Program Files\\Vivaldi\\Application\\vivaldi.exe", + "type": "firefox", + "firefoxExecutable": "C:\\Program Files\\Ablaze Floorp\\floorp.exe", "request": "launch", - "name": "client: vivaldi", + "name": "client: floorp", "url": "http://localhost:3000", - "webRoot": "${workspaceFolder}" + "webRoot": "${workspaceFolder}", + "pathMappings": [ + { + "url": "http://localhost:3000/_nuxt/components", + "path": "${workspaceFolder}/components" + }, + { + "url": "http://localhost:3000/_nuxt/components", + "path": "${workspaceFolder}/components" + }, + { + "url": "http://localhost:3000/_nuxt/components", + "path": "${workspaceFolder}/components" + } + ] }, { "type": "node", @@ -23,7 +37,7 @@ "compounds": [ { "name": "fullstack: nuxt", - "configurations": ["server: nuxt", "client: vivaldi"] + "configurations": ["server: nuxt", "client: floorp"] } ] }