Skip to content

Commit

Permalink
Make debugger more reliable (#1214)
Browse files Browse the repository at this point in the history
  • Loading branch information
dBianchii authored Oct 25, 2024
1 parent a6b5007 commit 51b361b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@
"type": "node-terminal",
"request": "launch",
"command": "pnpm dev",
"cwd": "${workspaceFolder}/apps/nextjs/",
"skipFiles": ["<node_internals>/**"]
"cwd": "${workspaceFolder}/apps/nextjs",
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"sourceMapPathOverrides": {
"/turbopack/[project]/*": "${webRoot}/*" //https://github.com/vercel/next.js/issues/62008
}
}
]
}

0 comments on commit 51b361b

Please sign in to comment.