boredgame/.vscode/launch.json

18 lines
390 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Vite DEV server",
"request": "launch",
"runtimeExecutable": "npx",
2022-07-28 00:05:54 +00:00
"runtimeArgs": ["vite"],
"type": "node",
"serverReadyAction": {
"action": "debugWithChrome",
"pattern": "Local: http://localhost:([0-9]+)",
"uriFormat": "http://localhost:%s"
}
}
]
2022-07-28 00:05:54 +00:00
}