Files
stream.graff.tech-new/webrtc-video-chat/client/index.html
T

28 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="theme-color" content="#1f2937" />
<title>WebRTC Chat</title>
</head>
<body>
<div id="root"></div>
<!-- Мобильная консоль для отладки -->
<script src="https://cdn.jsdelivr.net/npm/eruda@3.0.1/eruda.min.js"></script>
<script>
// Показывать консоль только на мобильных устройствах или при добавлении ?debug=1
if (/Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ||
window.location.search.includes('debug=1')) {
eruda.init();
}
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>