# Сборка и установка ### Создать app/servers.ts ```ts export const SERVERS = [ //'wss://cdn.rosetta-im.com', //main //'ws://10.211.55.2:3000', 'ws://10.211.55.2:8881' ]; export function selectServer(): string { const idx = Math.floor(Math.random() * SERVERS.length); return SERVERS[idx]; } ``` ```bash npm install # Установить зависимости npm run dev # Запустить в режиме разработки ```