blob: 77d81f4415637afa91133d326f2095a2db86af80 (
plain) (
blame)
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
|
<!doctype html>
<html>
<head>
<!-- Add a plain CSS file: see https://trunkrs.dev/assets/#css -->
<!-- If using Tailwind with Leptos CSR, see https://trunkrs.dev/assets/#tailwind instead-->
<link
data-trunk
rel="scss"
href="public/styles.scss"
/>
<link
data-trunk
rel="copy-file"
href="public/logo.svg"
/>
<link
data-trunk
rel="icon"
href="public/favicon.ico"
/>
<!-- include support for `wasm-bindgen --weak-refs` - see: https://rustwasm.github.io/docs/wasm-bindgen/reference/weak-references.html -->
<link
data-trunk
rel="rust"
data-wasm-opt="z"
data-weak-refs
/>
</head>
<body></body>
</html>
|