webs/.vscode/launch.json

16 lines
572 B
JSON
Raw Normal View History

2022-10-27 16:24:28 +09:00
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
2022-11-01 15:19:37 +09:00
"type": "chrome",
2022-10-27 16:24:28 +09:00
"request": "launch",
"name": "Launch Chrome against localhost",
2022-11-01 15:19:37 +09:00
"runtimeExecutable": "xdg-open",
"url": "http://localhost:5500",
2022-10-27 16:24:28 +09:00
"webRoot": "${workspaceFolder}"
}
]
}