29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<link rel="icon" href="/favicon.ico">
|
||
<link rel="manifest" href="/manifest.json">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta name="mobile-web-app-capable" content="yes">
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||
<link rel="apple-touch-icon" href="/src/assets/1024.png">
|
||
<script src="https://telegram.org/js/telegram-web-app.js"></script>
|
||
<title>Luminic Space</title>
|
||
</head>
|
||
<body>
|
||
<script type="text/javascript">
|
||
if (window.Telegram.WebApp) {
|
||
const tg = window.Telegram.WebApp;
|
||
tg.expand(); // Разворачиваем веб-приложение на весь экран
|
||
|
||
// Получаем информацию о пользователе и выводим её
|
||
const user = tg.initDataUnsafe.user;
|
||
console.log(user);
|
||
}
|
||
</script>
|
||
<div id="app"></div>
|
||
<script type="module" src="/src/main.ts"></script>
|
||
</body>
|
||
</html>
|