From 4e69b1eb2e083b0085db664a6a50401aa74d3250 Mon Sep 17 00:00:00 2001 From: Daci Date: Mon, 23 Oct 2023 15:33:52 +0300 Subject: [PATCH] added docs about rendezvous tracking config flag (#242) --- docs/index.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/index.md b/docs/index.md index 1ebd54ae..48507e23 100644 --- a/docs/index.md +++ b/docs/index.md @@ -61,6 +61,27 @@ Either click the select brighterscript button in the bottom right, or add this s "brightscript.bsdk": "node_modules/brighterscript" ``` +## IMPORTANT: Disable rendezvous tracking, when launching from vscode +Roku will perform poorly if roku's rendezvous tracking is enabled, when launching from vscode. Please ensure your launch.json config has this flag set to false +` "rendezvousTracking": false` +```javascript +{ + "type": "brightscript", + "request": "launch", + "name": "PROD", + "stopOnEntry": false, + "preLaunchTask": "build-prod", + "envFile": "${workspaceFolder}/.vscode/.env", + "host": "${env:ROKU_DEV_TARGET}", + "password": "${env:ROKU_DEVPASSWORD}", + "rootDir": "${workspaceFolder}/build", + "files": ["*", "*.*", "**/*.*"], + "enableDebugProtocol": false, + "rendezvousTracking": false + } + ```, + + ## Installation