2025-04-19 19:24:27 +02:00

33 lines
930 B
JSON

{
"version": "0.2.0",
"compounds": [
{
"name": "Debug Vite (server + browser)",
"configurations": [
"Launch Vite Dev Server",
"Launch Brave against localhost"
]
}
],
"configurations": [
{
"name": "Launch Brave against localhost",
"type": "pwa-chrome",
"request": "launch",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/src",
"runtimeExecutable": "C:\\Program Files\\BraveSoftware\\Brave-Browser\\Application\\brave.exe"
},
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Vite Dev Server",
"program": "${workspaceFolder}/node_modules/vite/bin/vite.js",
"args": ["--port", "5173"],
"cwd": "${workspaceFolder}",
"autoAttachChildProcesses": true,
"skipFiles": ["<node_internals>/**"]
}
]
}