This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/platform/web/index.html

35 lines
1.4 KiB
HTML
Raw Normal View History

2019-02-07 03:34:39 +05:30
<!DOCTYPE html>
<html>
2020-10-26 21:18:04 +05:30
<head>
<meta charset="utf-8">
<title>Hydrogen Chat</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
2020-08-12 15:12:42 +05:30
<meta name="application-name" content="Hydrogen Chat"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
2020-08-12 15:12:42 +05:30
<meta name="apple-mobile-web-app-title" content="Hydrogen Chat">
<meta name="description" content="A matrix chat application">
<link rel="apple-touch-icon" href="./assets/icon-maskable.png">
<link rel="icon" type="image/png" href="assets/icon-maskable.png">
<script type="module"> import "@theme/default"; </script>
2020-10-26 21:18:04 +05:30
</head>
<body class="hydrogen">
<script id="main" type="module">
import {main} from "./main";
import {Platform} from "./Platform";
2022-04-20 12:25:23 +05:30
import configURL from "./assets/config.json?url";
import assetPaths from "./sdk/paths/vite";
if (import.meta.env.PROD) {
assetPaths.serviceWorker = "sw.js";
}
2022-04-20 12:00:33 +05:30
const platform = new Platform({
container: document.body,
assetPaths,
2022-04-20 12:25:23 +05:30
configURL,
2022-04-20 12:00:33 +05:30
options: {development: import.meta.env.DEV}
2022-04-20 12:25:23 +05:30
});
2021-10-11 21:29:31 +05:30
main(platform);
2020-10-26 21:18:04 +05:30
</script>
</body>
2019-02-27 03:15:58 +05:30
</html>