Tsumugiboshi/.vscode/launch.json
2025-01-28 15:22:18 +08:00

16 lines
418 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"file": "${workspaceFolder}/index.html",
"runtimeArgs": [
"--disable-web-security",
"--user-data-dir=${workspaceFolder}/UserDataDir"
],
"webRoot": "${workspaceFolder}"
}
]
}