mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 15:09:47 +00:00
28 lines
617 B
JSON
28 lines
617 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "next dev",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/next",
|
|
"runtimeArgs": ["dev"],
|
|
"cwd": "${workspaceFolder}",
|
|
"port": 9229,
|
|
"smartStep": true,
|
|
"console": "integratedTerminal",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"env": {
|
|
"NODE_OPTIONS": "--inspect"
|
|
}
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Next.js App",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"port": 9229
|
|
}
|
|
]
|
|
}
|