Files
DianZhanDemo/.vscode/launch.json

20 lines
461 B
JSON
Raw Normal View History

2025-12-11 02:09:07 +08:00
{
"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"
}
]
}