mkdocs-material/.vscode/launch.json

66 lines
1.6 KiB
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Application",
2022-11-12 17:18:46 +03:00
"type": "chrome",
"request": "launch",
"runtimeArgs": [
"--disable-features=Translate",
"--incognito"
],
2023-10-05 16:44:24 +03:00
"preLaunchTask": "Start and watch for changes",
2023-10-05 16:53:27 +03:00
"url": "http://localhost:8000/",
2022-11-12 19:25:15 +03:00
"webRoot": "${workspaceFolder}",
2023-10-05 16:44:24 +03:00
"sourceMaps": true,
"sourceMapPathOverrides": {
"*": "${workspaceFolder}/*"
},
"smartStep": true
2023-10-05 15:15:25 +03:00
},
{
"name": "MkDocs",
"type": "python",
"request": "launch",
"preLaunchTask": "Start and watch for changes",
"program": "venv/bin/mkdocs",
"args": ["build"],
"env": {
"PYTHONPATH": "."
}
},
{
"name": "MkDocs server",
"type": "python",
"request": "launch",
"preLaunchTask": "Start and watch for changes",
"program": "venv/bin/mkdocs",
"args": ["serve", "--watch-theme"],
"env": {
"PYTHONPATH": "."
}
},
{
"name": "MkDocs server (dirty)",
"type": "python",
"request": "launch",
"preLaunchTask": "Start and watch for changes",
"program": "venv/bin/mkdocs",
"args": ["serve", "--watch-theme", "--dirtyreload"],
"env": {
"PYTHONPATH": "."
}
}
2023-10-05 16:44:24 +03:00
],
"compounds": [
{
"name": "Application + MkDocs server",
"configurations": ["Application", "MkDocs server"]
},
{
"name": "Application + MkDocs server (dirty)",
"configurations": ["Application", "MkDocs server (dirty)"]
}
]
}