3a854c8d27d030f96089b6d6d100fc1f8fae8788
Сборка и установка
Создать 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.1%
PowerShell
1.7%
CSS
1.6%
Shell
0.4%
HTML
0.2%