Skip to content

Commit

Permalink
add launch config for running demo
Browse files Browse the repository at this point in the history
  • Loading branch information
Birch-san committed Dec 21, 2024
1 parent 9856738 commit 1348095
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions demo/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Serve",
"program": "${workspaceFolder}/node_modules/.bin/ws",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"args": [
"--https",
"--cors.embedder-policy", "require-corp",
"--cors.opener-policy", "same-origin",
"--directory", "..",
]
},
]
}

0 comments on commit 1348095

Please sign in to comment.