Open DerProfessor opened 1 year ago
I have had this same problem too. if you enable it to stop in exceptions, for example, it says that the file doesn't exist because it tries to open it but in the host filesystem, not in the container filesystem, which makes me think the problem is that. this debugger somehow forces the breakpoints to be in the host.
My host is Linux Deepin and my container is Alpine, if I check the file opened this is the filesystem used, and there is no workspace
folder:
While in the container these are the folders:
Hi there,
I am trying to debug an issue inside my react app when using the Firefox browser. My app resides inside a devcontainer because my backend app is also residing there.
When I try to debug the issue and set a breakpoint the debugger stops apparently at the line. But the corresponding source file can't be open. This is kinda weird because when I use the Edge debugger extension for example everything is working fine. Also the path to file which can't be opened is valid inside the container. I checked that. The error message is:
The editor could not be opened because the file was not found.
This is my
launch.json
:I dug a little bit deeper and it seems that the debug extension is trying to open the file on my host environment which of course can't work because the layout is totally different. The Edge extension seem to open file inside the devcontainer just fine. Maybe the issue resides here?
Using vscode version:
1.83.1
Firefox extension version:v2.9.10
Firefox version:118.0.2
Cheers Daniel