feat(webclient): add portal.gosuda.org relay to bootstrap servers

Add a secure WebSocket (wss) relay server to the bootstrap servers list. This enhances connectivity by providing an additional, publicly accessible relay option alongside the local development server.

lemon-mint committed Oct 30, 2025 at 23:27 UTC 8451d03eddd2739b37d3b8235744e87195cad54d
2 files changed +1 -1
cmd/webclient/main.wasm
Binary files /dev/null and b/cmd/webclient/main.wasm differ
cmd/webclient/main_js.go
+1 -1
@@ -19,7 +19,7 @@ import (
19 )
20
21 var (
22 - bootstrapServers = []string{"ws://localhost:4017/relay"}
22 + bootstrapServers = []string{"ws://localhost:4017/relay", "wss://portal.gosuda.org/relay"}
23 rdClient *sdk.RDClient
24 )
25