diff --git a/examples/webrtc/src/index.ts b/examples/webrtc/src/index.ts index f90c132..ff30f03 100644 --- a/examples/webrtc/src/index.ts +++ b/examples/webrtc/src/index.ts @@ -29,6 +29,9 @@ const init = () => { const peer = new SimplePeer({ initiator: true, trickle: false, + config: { + iceServers: [], + } }); peer.on('signal', (data) => { diff --git a/examples/webrtc/src/other.ts b/examples/webrtc/src/other.ts index 729e063..81ab434 100644 --- a/examples/webrtc/src/other.ts +++ b/examples/webrtc/src/other.ts @@ -22,6 +22,9 @@ const init = () => { const peer = new SimplePeer({ initiator: false, trickle: false, + config: { + iceServers: [], + } }); peer.on('signal', (data) => {