mirror of
https://github.com/TeXlyre/texlyre.git
synced 2025-12-20 16:59:57 -06:00
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/src/assets/images/TeXlyre_notext.png" />
|
|
<meta name="viewport" content="width=1200, user-scalable=yes" />
|
|
<script>
|
|
// Force desktop user agent for mobile browsers - This spoofing attempt doesn't work most of the time
|
|
// if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
|
|
// Object.defineProperty(navigator, 'userAgent', {
|
|
// get: function() {
|
|
// return 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36';
|
|
// }
|
|
// });
|
|
// }
|
|
</script>
|
|
<!-- <script src="TexlyrePdfTeXEngineSetup.js"></script>-->
|
|
<!-- <script src="TexlyreXeTeXEngineSetup.js"></script>-->
|
|
<!-- <script src="TexlyreDvipdfmxEngineSetup.js"></script>-->
|
|
<!-- PWA Manifest -->
|
|
<link rel="manifest" href="./manifest.json">
|
|
<meta name="theme-color" content="#000000">
|
|
|
|
<title>TeXlyre</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
|
|
</html>
|