diff --git a/README.md b/README.md index 728c7ff1bdccb8b3ff873b89b335c0f91048a8ed..e9b3cc2944f0ea60c2aaaba64a7e9b872e11db49 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,14 @@ import LioWebRTC from 'liowebrtc'; const webrtc = new LioWebRTC({ // The local video reference set within your render function, or the element's ID localVideoEl: 'localVid', - // Immediately request camera and mic access. Set to false if you're only transmitting data. + // Immediately request camera and mic access. autoRequestMedia: true, // Displays events emitted by the webrtc object in the console. - debug: true + debug: true, + // Set this to true if you want to disable video/audio channels, and only enable data channel. + dataOnly: false, + // The url for your signaling server + url: 'https://sandbox.simplewebrtc.com:443/', }); ```