-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- viewport-fit=cover lets the page extend under the status bar / display
cutout; native.css adds the safe-area insets back as padding. -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#f4f1ea" />
<meta name="description" content="A quiet place to watch your money." />
<title>Ledger</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.ts"></script>
<!-- Shell: plain classic scripts, deliberately OUTSIDE the module bundle.
capacitor.js exposes window.Capacitor for the native build (inert on web,
staged from node_modules into public/ by prepare:public — gitignored).
native.js carries the ES5 capability probe (which is why it must survive a
bundle that an old engine can't parse) plus the system-bar + back-button
wiring. See public/native.js. -->
<script src="/capacitor.js"></script>
<script src="/native.js"></script>
</body>
</html>