...
// pages/room.tsx
const ICE_SERVERS: RTCConfiguration = {
iceServers: [
{
urls: "stun:stun.l.google.com:19302",
},
// My TURN SERVER
{
urls: "turn:x.x.x.x:xxxx",
username: "username",
credential: "credential",
},
],
}
...
...
// pages/room.tsx
const ICE_SERVERS: RTCConfiguration = {
iceServers: [
{
urls: "stun:stun.l.google.com:19302",
},
// My TURN SERVER
{
urls: "turn:x.x.x.x:xxxx",
username: "username",
credential: "credential",
},
],
}
...