vscode: fix client debug

This commit is contained in:
vchikalkin 2023-02-06 14:30:10 +03:00
parent 4f972a4cfe
commit b786f49aa1

10
.vscode/launch.json vendored
View File

@ -9,9 +9,15 @@
},
{
"name": "Next.js: debug client-side",
"type": "pwa-chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/apps/web",
"sourceMaps": true,
"sourceMapPathOverrides": {
"webpack://_N_E/*": "${webRoot}/*"
},
"skipFiles": ["**/<node_internals>/**", "**/node_modules/**"]
},
{
"name": "Next.js: debug full stack",