mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-05 21:47:48 +01:00
32 lines
758 B
JSON
32 lines
758 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Debug homepage",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "dev"],
|
|
"env": {
|
|
"LOG_LEVEL": "debug"
|
|
},
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"console": "integratedTerminal",
|
|
"serverReadyAction":{
|
|
"pattern": ".*http://localhost:3000.*",
|
|
"action": "startDebugging",
|
|
"name": "Launch Chromium",
|
|
"killOnServerStop": true,
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Chromium",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "http://localhost:3000",
|
|
"urlFilter": "http://localhost:3000",
|
|
"webRoot": "${workspaceFolder}",
|
|
"trace": true
|
|
}
|
|
]
|
|
}
|