Closed 0xff8 closed 9 months ago
From the documentation, about url
:
These properties are used to map urls to local files
So it's not meant to open a tab with the specified URL.
For that, I think you can use firefoxArgs
, which from a quick test seems to do what you want:
{
"type": "firefox",
"request": "launch",
"name": "client: firefox",
"url": "http://localhost:3000",
"firefoxArgs": ["http://localhost:3000"],
"reAttach": true,
"webRoot": "${workspaceFolder}"
},
I'm going to close the issue, but feel free to reopen it if the provided solution doesn't work for you
Whenever I start debugging on my MacOS , the Firefox Developer Edition getting launched, but the url defined in the
launch.json
config not opened. So I always have to manually type it in the url field. Could you suggest me what is wrong?Here is my launch json: