50 lines
No EOL
1.4 KiB
JSON
50 lines
No EOL
1.4 KiB
JSON
{
|
|
"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}"
|
|
}
|
|
]
|
|
} |