2021-04-13 22:42:50 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2023-01-03 02:39:03 -05:00
|
|
|
<link rel="icon" href="/favicon.ico" />
|
2021-11-12 00:48:16 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
|
2023-01-03 02:39:03 -05:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
|
|
<link rel="manifest" crossorigin="use-credentials" href="/site.webmanifest">
|
|
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
|
2022-03-15 04:43:38 -04:00
|
|
|
<meta name="apple-mobile-web-app-title" content="Nitro">
|
|
|
|
<meta name="application-name" content="Nitro">
|
|
|
|
<meta name="msapplication-TileColor" content="#000000">
|
2021-04-13 22:42:50 -04:00
|
|
|
<meta name="theme-color" content="#000000" />
|
2022-03-15 04:43:38 -04:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
2022-03-18 17:41:17 +00:00
|
|
|
<base href="./">
|
2021-06-30 00:35:05 -03:00
|
|
|
<title>Nitro</title>
|
2021-04-13 22:42:50 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
2021-04-15 02:49:56 -04:00
|
|
|
<div id="root" class="w-100 h-100"></div>
|
2021-04-14 14:24:24 -04:00
|
|
|
<script>
|
2024-03-26 22:47:58 -04:00
|
|
|
window.NitroConfig = {
|
2022-03-15 15:11:57 -04:00
|
|
|
"config.urls": [ '/renderer-config.json', '/ui-config.json' ],
|
2024-03-20 22:39:51 -04:00
|
|
|
"socket.url": (new URLSearchParams(window.location.search).get('socket.url') || null),
|
2022-03-19 00:26:57 -04:00
|
|
|
"sso.ticket": (new URLSearchParams(window.location.search).get('sso') || null),
|
|
|
|
"forward.type": (new URLSearchParams(window.location.search).get('room') ? 2 : -1),
|
|
|
|
"forward.id": (new URLSearchParams(window.location.search).get('room') || 0),
|
|
|
|
"friend.id": (new URLSearchParams(window.location.search).get('friend') || 0),
|
2021-04-14 14:24:24 -04:00
|
|
|
};
|
|
|
|
</script>
|
2023-01-03 02:39:03 -05:00
|
|
|
<script type="module" src="./src/index.tsx"></script>
|
2021-04-13 22:42:50 -04:00
|
|
|
</body>
|
|
|
|
</html>
|