20 lines
461 B
JSON
20 lines
461 B
JSON
|
|
{
|
||
|
|
"version": "0.2.0",
|
||
|
|
"configurations": [
|
||
|
|
{
|
||
|
|
"name": "Launch Nuxt App",
|
||
|
|
"type": "node",
|
||
|
|
"request": "launch",
|
||
|
|
"program": "${workspaceFolder}/app/node_modules/.bin/nuxt",
|
||
|
|
"args": ["dev"],
|
||
|
|
"cwd": "${workspaceFolder}/app",
|
||
|
|
"runtimeArgs": ["--inspect"],
|
||
|
|
"env": {
|
||
|
|
"NODE_OPTIONS": "--inspect"
|
||
|
|
},
|
||
|
|
"console": "integratedTerminal",
|
||
|
|
"restart": true,
|
||
|
|
"protocol": "inspector"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|