Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,18 @@
"request": "launch",
"name": "Debug Frontend: Launch Chrome against http://localhost:5173",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/frontend"
"webRoot": "${workspaceFolder}/frontend",
// "runtimeExecutable": "/usr/bin/google-chrome"
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As described in #729, I am having trouble running the debug session on WSL.
I added this comment in case others encounter similar errors.

However, it did not solve my problem, so we could as well delete the comment and create a new PR to tackle #729.

},
],
"compounds": [
{
"name": "Debug Fullstack",
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am pretty sure this should work, but was not able to test it yet, due to #729.

"configurations": [
"Debug FastAPI Project backend: Python Debugger",
"Debug Frontend: Launch Chrome against http://localhost:5173"
],
"stopAll": true
},
]
}