/ src / app.html
app.html
 1  <!doctype html>
 2  <html lang="en">
 3    <head>
 4      <script>
 5        // Avoid flickering on app start.
 6        if (localStorage.getItem("theme") === "dark") {
 7          document.documentElement.setAttribute("data-theme", "dark");
 8        }
 9      </script>
10      <script
11        defer
12        data-domain="desktop.radicle.xyz"
13        src="https://plausible.io/js/script.js"></script>
14  
15      <meta charset="utf-8" />
16      <link rel="icon" href="%sveltekit.assets%/seedling.svg" />
17      <meta name="viewport" content="width=device-width, initial-scale=1" />
18  
19      <link
20        rel="stylesheet"
21        type="text/css"
22        href="%sveltekit.assets%/global.css" />
23      <link
24        rel="stylesheet"
25        type="text/css"
26        href="%sveltekit.assets%/colors.css" />
27      <link
28        rel="stylesheet"
29        type="text/css"
30        href="%sveltekit.assets%/typography.css" />
31  
32      %sveltekit.head%
33    </head>
34    <body data-sveltekit-preload-data="hover">
35      <div style="display: contents">%sveltekit.body%</div>
36    </body>
37  </html>