1const myPeer = new Peer(undefined, {
2 config: {
3 iceServers: [
4 {urls: 'stun:stun.l.google.com:19302'},
5 {
6 url: 'turn:numb.viagenie.ca',
7 credential: 'muazkh',
8 username: 'webrtc@live.com',
9 },
10 ],
11 }
12})