Skip to content

Commit 0d1bdac

Browse files
committed
2 parents 9f07663 + a0d663c commit 0d1bdac

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

.vscode/launch.json

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,20 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"command": "pnpm run dev --filter webapp",
9-
"name": "Run webapp",
10-
"request": "launch",
118
"type": "node-terminal",
12-
"cwd": "${workspaceFolder}"
9+
"request": "launch",
10+
"name": "Debug WebApp",
11+
"command": "pnpm run dev --filter webapp",
12+
"envFile": "${workspaceFolder}/apps/webapp/.env",
13+
"cwd": "${workspaceFolder}",
14+
"sourceMaps": true
1315
},
1416
{
1517
"type": "chrome",
1618
"request": "launch",
1719
"name": "Chrome webapp",
18-
"url": "http://localhost:3000",
20+
"url": "http://localhost:3030",
1921
"webRoot": "${workspaceFolder}/apps/webapp/app"
20-
},
21-
{
22-
"type": "node",
23-
"request": "launch",
24-
"name": "Debug Current Test File",
25-
"autoAttachChildProcesses": true,
26-
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
27-
"program": "${workspaceRoot}/node_modules/vitest/vitest.mjs",
28-
"args": ["run", "${relativeFile}"],
29-
"smartStep": true,
30-
"console": "integratedTerminal"
3122
}
3223
]
3324
}

0 commit comments

Comments
 (0)