diff --git a/package.json b/package.json index 9354cc5..b3e0145 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@xtr-dev/rondevu-client", - "version": "0.3.0", + "version": "0.3.1", "description": "TypeScript client for Rondevu peer signaling and discovery server", "type": "module", "main": "dist/index.js", diff --git a/src/rondevu.ts b/src/rondevu.ts index b9ca6b9..61bd2a6 100644 --- a/src/rondevu.ts +++ b/src/rondevu.ts @@ -23,7 +23,7 @@ export class Rondevu { * @param options - Client configuration options */ constructor(options: RondevuOptions = {}) { - this.baseUrl = options.baseUrl || 'https://rondevu.xtrdev.workers.dev'; + this.baseUrl = options.baseUrl || 'https://api.ronde.vu'; this.fetchImpl = options.fetch; this.wrtc = options.wrtc; diff --git a/src/types.ts b/src/types.ts index 7c4498f..06d7ad3 100644 --- a/src/types.ts +++ b/src/types.ts @@ -190,7 +190,7 @@ export interface WebRTCPolyfill { * Configuration options for Rondevu WebRTC client */ export interface RondevuOptions { - /** Base URL of the Rondevu server (defaults to 'https://rondevu.xtrdev.workers.dev') */ + /** Base URL of the Rondevu server (defaults to 'https://api.ronde.vu') */ baseUrl?: string; /** Peer identifier (optional, auto-generated if not provided) */ peerId?: string;