From 83df6aeee32962169e4859ed126465ae0abde4e3 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 14 Nov 2025 20:44:06 +0100 Subject: [PATCH] Add Google STUN servers for reliability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added Google STUN servers alongside metered.ca for maximum reliability. Google STUN always works and ensures basic NAT traversal even if TURN servers fail. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.jsx b/src/App.jsx index e6e01ee..ef8b1fe 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,9 +6,14 @@ const API_URL = 'https://api.ronde.vu'; const RTC_CONFIG = { iceServers: [ + // Google STUN - reliable and always works + { urls: 'stun:stun.l.google.com:19302' }, + { urls: 'stun:stun1.l.google.com:19302' }, + // Metered.ca STUN { urls: "stun:stun.relay.metered.ca:80", }, + // Metered.ca TURN servers (for restrictive NATs) { urls: "turn:standard.relay.metered.ca:80", username: "e03a51621b4f11ffbed3addd",