-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add debug configs for local dev preview (#17)
* add debug configs for local dev preview Co-authored-by: Julia Silge <[email protected]>
- Loading branch information
1 parent
5c78a47
commit 8ce5252
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Preview Docs (Chrome)", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"preview" | ||
], | ||
"runtimeExecutable": "quarto", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"type": "node", | ||
"serverReadyAction": { | ||
"action": "debugWithChrome", | ||
"pattern": "Browse at http://localhost:(\\d+)", | ||
"uriFormat": "http://localhost:%s", | ||
"killOnServerStop": true | ||
} | ||
}, | ||
{ | ||
"name": "Preview Docs (Edge)", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"preview" | ||
], | ||
"runtimeExecutable": "quarto", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"type": "node", | ||
"serverReadyAction": { | ||
"action": "debugWithEdge", | ||
"pattern": "Browse at http://localhost:(\\d+)", | ||
"uriFormat": "http://localhost:%s", | ||
"killOnServerStop": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters