You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
645 B
29 lines
645 B
2 years ago
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Blitz: debug server-side",
|
||
|
"type": "node-terminal",
|
||
|
"request": "launch",
|
||
|
"command": "npm run dev"
|
||
|
},
|
||
|
{
|
||
|
"name": "Blitz: debug client-side",
|
||
|
"type": "chrome",
|
||
|
"request": "launch",
|
||
|
"url": "http://localhost:3000"
|
||
|
},
|
||
|
{
|
||
|
"name": "Blitz: debug full stack",
|
||
|
"type": "node-terminal",
|
||
|
"request": "launch",
|
||
|
"command": "npm run dev",
|
||
|
"serverReadyAction": {
|
||
|
"pattern": "started server on .+, url: (https?://.+)",
|
||
|
"uriFormat": "%s",
|
||
|
"action": "debugWithChrome"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|