use mozilla stun server

This commit is contained in:
2026-04-11 17:53:43 -04:00
parent b02f7b292c
commit 782edffcaa
@@ -2,7 +2,7 @@ import { Identity } from "spacetimedb";
import type { Peer, WebRTCStats } from "./types";
const ICE_SERVERS: RTCConfiguration = {
iceServers: [{ urls: "stun:stun.l.google.com:19302" }],
iceServers: [{ urls: "stun:stun.services.mozilla.com:3478" }],
};
export class PeerManagerService {