chore(workspace): edit launch.json

we're now using firefox :)
This commit is contained in:
parent 517ecfdda8
commit 3b7eb4822e
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

24
.vscode/launch.json vendored

@ -4,12 +4,26 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"type": "chrome", "type": "firefox",
"runtimeExecutable": "C:\\Program Files\\Vivaldi\\Application\\vivaldi.exe", "firefoxExecutable": "C:\\Program Files\\Ablaze Floorp\\floorp.exe",
"request": "launch", "request": "launch",
"name": "client: vivaldi", "name": "client: floorp",
"url": "http://localhost:3000", "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", "type": "node",
@ -23,7 +37,7 @@
"compounds": [ "compounds": [
{ {
"name": "fullstack: nuxt", "name": "fullstack: nuxt",
"configurations": ["server: nuxt", "client: vivaldi"] "configurations": ["server: nuxt", "client: floorp"]
} }
] ]
} }