Skip to content

Commit

Permalink
added docs about rendezvous tracking config flag
Browse files Browse the repository at this point in the history
  • Loading branch information
rdaci23 committed Oct 23, 2023
1 parent 653537c commit fdbc8e3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<a name="easy-to-integrate"></a>
Expand Down

0 comments on commit fdbc8e3

Please sign in to comment.