Skip to content

Commit 2b4fb4b

Browse files
repo: fix launch configurations for ovsx (#12731)
The commit fixes the launch configurations when referencing `ovsx-router-config.json` to use the proper path with respect to the `workspaceFolder`. Signed-off-by: vince-fugnitto <vincent.fugnitto@ericsson.com>
1 parent a8c4954 commit 2b4fb4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"--remote-debugging-port=9222",
3636
"--no-app-auto-install",
3737
"--plugins=local-dir:../../plugins",
38-
"--ovsx-router-config=examples/ovsx-router-config.json"
38+
"--ovsx-router-config=${workspaceFolder}/examples/ovsx-router-config.json"
3939
],
4040
"env": {
4141
"NODE_ENV": "development"
@@ -65,7 +65,7 @@
6565
"--app-project-path=${workspaceFolder}/examples/browser",
6666
"--plugins=local-dir:plugins",
6767
"--hosted-plugin-inspect=9339",
68-
"--ovsx-router-config=examples/ovsx-router-config.json"
68+
"--ovsx-router-config=${workspaceFolder}/examples/ovsx-router-config.json"
6969
],
7070
"env": {
7171
"NODE_ENV": "development"

0 commit comments

Comments
 (0)