WorkshopTasker/.vscode/launch.json

50 lines
1.4 KiB
JSON
Raw Normal View History

2023-05-11 06:03:22 +02:00
{
"configurations": [
{
"name": "Launch Edge",
"request": "launch",
"type": "msedge",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
"name": "Launch Vivaldi",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "C:\\Program Files\\Vivaldi\\Application\\vivaldi.exe"
},
{
"type": "firefox",
"request": "launch",
"reAttach": true,
"name": "Launch Firefox",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"pathMappings": [
{
"url": "http://localhost:3000/_nuxt/pages",
"path": "${workspaceFolder}/pages"
}
]
},
{
"type": "node",
"name": "Nuxt: nuxi dev",
"request": "launch",
"program": "${workspaceFolder}/node_modules/nuxi/bin/nuxi.mjs",
"args": [
"dev"
],
"cwd": "${workspaceFolder}"
},
{
"type": "node-terminal",
"name": "Nuxt: npm run dev",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}"
}
]
}