This PR addresses 2 of 3 tasks from #93. - [x] It should be possible to download SIGit as a PWA on a device homescreen. - [x] This app should self-update Co-authored-by: theborakompanioni <theborakompanioni+github@gmail.com> Co-authored-by: b <b@4j.cx> Reviewed-on: #324 Reviewed-by: enes <enes@noreply.git.nostrdev.com> Co-authored-by: tbk <theborakompanioni+nostrdev@gmail.com> Co-committed-by: tbk <theborakompanioni+nostrdev@gmail.com>
16 lines
456 B
HTML
16 lines
456 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="manifest" href="/app.webmanifest" />
|
|
<title>SIGit</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="/opentimestamps.min.js"></script>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|