d309e011a33eb6d90ba2cbd2b7711285a9be9ddf
Сборка и установка
Создать app/servers.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];
}
npm install # Установить зависимости
npm run dev # Запустить в режиме разработки
Description
Languages
TypeScript
96.2%
PowerShell
1.7%
CSS
1.6%
HTML
0.3%
Shell
0.2%