Skip to content
Snippets Groups Projects
Commit 48c17f17 authored by Dysk0's avatar Dysk0
Browse files

launch.json edited

parent d0995610
No related branches found
No related tags found
No related merge requests found
{ {
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"type": "pwa-node", "type": "node", // Changed from pwa-node to node
"request": "launch", "request": "launch",
"name": "Next.js: Node", "name": "Launch Program",
"runtimeExecutable": "npm", "skipFiles": ["<node_internals>/**"],
"runtimeArgs": ["run", "dev"], "program": "${workspaceFolder}/node_modules/next/dist/bin/next",
"port": 9229, "args": ["dev"],
"restart": true, "runtimeArgs": ["--inspect=9229"],
"console": "integratedTerminal", "port": 9229,
"env": { "restart": true,
"NODE_OPTIONS": "--inspect" "console": "integratedTerminal",
}, "env": {
"cwd": "${workspaceFolder}" "NODE_OPTIONS": "--inspect=9229"
} },
] "cwd": "${workspaceFolder}"
} }
]
\ No newline at end of file }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment