Skip to content

Instantly share code, notes, and snippets.

@pbzona
Last active December 19, 2024 16:53
Show Gist options
  • Save pbzona/026afabbb28a5acd013e0f1b95936d2f to your computer and use it in GitHub Desktop.
Save pbzona/026afabbb28a5acd013e0f1b95936d2f to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Next: Server (Dev)",
"type": "node",
"internalConsoleOptions": "openOnSessionStart",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "node",
"runtimeVersion": "20",
"stopOnEntry": true,
"program": "node_modules/next/dist/bin/next",
"runtimeArgs": [
"--inspect"
],
"console": "integratedTerminal",
"skipFiles": [
"<node_internals>/**"
],
"env": {
"TURBOPACK": "1",
"TURBOPACK_DEV": "1",
"TURBOPACK_BUILD": "1",
"NEXT_TELEMETRY_DISABLED": "1"
}
},
{
"name": "Next: Build",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "node",
"runtimeVersion": "20",
"stopOnEntry": false,
"runtimeArgs": [
"node_modules/next/dist/bin/next",
"build"
],
"console": "integratedTerminal",
"skipFiles": [
"<node_internals>/**"
],
"env": {
"TURBOPACK": "1",
"TURBOPACK_DEV": "1",
"TURBOPACK_BUILD": "1",
"NEXT_TELEMETRY_DISABLED": "1"
}
},
{
"name": "Next: Client",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next: Full Stack",
"type": "node",
"request": "launch",
"internalConsoleOptions": "openOnSessionStart",
"stopOnEntry": true,
"program": "node_modules/next/dist/bin/next",
"runtimeArgs": [
"--inspect"
],
"skipFiles": [
"<node_internals>/**"
],
"serverReadyAction": {
"action": "debugWithChrome",
"killOnServerStop": true,
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"webRoot": "${workspaceFolder}"
},
"env": {
"TURBOPACK": "1",
"TURBOPACK_DEV": "1",
"TURBOPACK_BUILD": "1",
"NEXT_TELEMETRY_DISABLED": "1"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment