mirror of
https://github.com/gethomepage/homepage.git
synced 2025-07-09 03:04:18 -04:00
Update launch configuration
This commit is contained in:
parent
1a1039194c
commit
e51db24418
30
.vscode/launch.json
vendored
30
.vscode/launch.json
vendored
@ -1,19 +1,31 @@
|
|||||||
{
|
{
|
||||||
// Use IntelliSense to learn about possible attributes.
|
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Next.js: debug full stack",
|
"name": "Debug homepage",
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/next",
|
"runtimeExecutable": "pnpm",
|
||||||
|
"runtimeArgs": ["run", "dev"],
|
||||||
|
"env": {
|
||||||
|
"LOG_LEVEL": "debug"
|
||||||
|
},
|
||||||
|
"skipFiles": ["<node_internals>/**"],
|
||||||
|
"console": "integratedTerminal",
|
||||||
"serverReadyAction":{
|
"serverReadyAction":{
|
||||||
"pattern": "started server on .+, url: (https?://.+)",
|
"pattern": ".*http://localhost:3000.*",
|
||||||
"uriFormat": "%s",
|
"action": "startDebugging",
|
||||||
"action": "debugWithChrome"
|
"name": "Launch Chromium",
|
||||||
|
"killOnServerStop": true,
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Launch Chromium",
|
||||||
|
"type": "chrome",
|
||||||
|
"request": "launch",
|
||||||
|
"url": "http://localhost:3000",
|
||||||
|
"urlFilter": "http://localhost:3000",
|
||||||
|
"webRoot": "${workspaceFolder}",
|
||||||
|
"trace": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user