47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Next.js: Full Stack",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "npm run dev",
|
|
"serverReadyAction": {
|
|
"pattern": "started server on .+, url: (https?://.+)",
|
|
"uriFormat": "%s",
|
|
"action": "debugWithChrome"
|
|
},
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen"
|
|
},
|
|
{
|
|
"name": "Next.js: Frontend",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "http://localhost:3030",
|
|
"webRoot": "${workspaceFolder}",
|
|
"sourceMapPathOverrides": {
|
|
"webpack://_N_E/*": "${webRoot}/*"
|
|
}
|
|
},
|
|
{
|
|
"name": "Next.js: Backend",
|
|
"type": "node",
|
|
"request": "attach",
|
|
"port": 9229,
|
|
"restart": true,
|
|
"sourceMaps": true,
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///*": "${workspaceFolder}/*"
|
|
}
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Next.js: Debug Full Stack",
|
|
"configurations": ["Next.js: Backend", "Next.js: Frontend"],
|
|
"stopAll": true
|
|
}
|
|
]
|
|
}
|