-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.51 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.51 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link data-trunk rel="tailwind-css" href="/style/tailwind.css" />
<link data-trunk rel="copy-file" href="/style/repo_graph.css" />
<link data-trunk rel="copy-dir" href="/public/images"/>
<link data-trunk rel="copy-dir" href="/public/fonts"/>
<link data-trunk rel="copy-file" href="/public/repo_graph.js"/>
<link data-trunk rel="copy-file" href="/public/_headers"/>
<!--
Repository graph dependencies (D3 + repo_graph.js) are NOT loaded
here. They are injected on demand by `RepositoryGraph` (see
src/components/repo_view.rs), which keeps ~90 KB gz off the
initial bundle on the landing page, /projects, /teams, etc.
-->
<!--
`data-wasm-opt-params` forwards extra flags to wasm-opt. The bundled
wasm-opt v123 has bulk-memory disabled by default, but rustc 1.82+
emits `memory.copy` instructions, which fail validation. The two
`--enable-*` flags below match the features the rustc target enables.
-->
<link
data-trunk
rel="rust"
data-wasm-opt="z"
data-wasm-opt-params="--enable-bulk-memory --enable-nontrapping-float-to-int"
data-keep-debug="false"
data-weak-refs
/>
<link rel="icon" href="images/odpicon.ico" type="image/x-icon">
<link rel="preload" href="/fonts/geist-latin.woff2" as="font" type="font/woff2" crossorigin>
</head>
<body></body>
</html>