blog-bs/.vscode/launch.json

18 lines
494 B
JSON
Raw Normal View History

2021-04-24 14:47:22 +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": [
{
2021-05-01 15:13:38 +08:00
"name": "chrome",
2021-04-28 13:41:09 +08:00
"type": "chrome",
2021-04-24 14:47:22 +08:00
"request": "launch",
2021-04-28 13:41:09 +08:00
"reAttach": true,
2021-05-02 22:14:16 +08:00
"url": "http://admin.blog.localhost/",
2021-05-01 15:13:38 +08:00
"webRoot": "${workspaceFolder}",
"userDataDir": "/Users/ivan/Projects/.chrome"
2021-04-24 14:47:22 +08:00
}
]
}