fennec-fe/.vscode/launch.json

17 lines
457 B
JSON
Raw Normal View History

2021-04-18 11:18:29 +08:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "chrome",
"type": "chrome",
"request": "launch",
2021-09-26 17:29:46 +08:00
"url": "http://fennec.localhost:7070/",
2021-04-18 11:18:29 +08:00
"webRoot": "${workspaceFolder}",
2021-07-10 18:52:45 +08:00
"userDataDir": ".vscode/chrome"
2021-04-18 11:18:29 +08:00
}
]
}