1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 15:40:15 +01:00
mkdocs-material/.vscode/launch.json

18 lines
356 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Application",
2022-11-12 15:18:46 +01:00
"type": "chrome",
"request": "launch",
"runtimeArgs": [
"--disable-features=Translate",
"--incognito"
],
"url": "http://localhost:8000/mkdocs-material/",
2022-11-12 17:25:15 +01:00
"webRoot": "${workspaceFolder}",
"smartStep": true
}
]
}