The repository associated with https://keii.dev/posts/the-basics-for-a-fullstack-spa-in-gleam
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
7 <title>🚧 frontend</title>
8
9 <!-- Uncomment this if you add the TailwindCSS integration -->
10 <!-- <link rel="stylesheet" href="/priv/static/frontend.css"> -->
11 <script type="module" src="/priv/static/frontend.mjs"></script>
12 </head>
13
14 <body>
15 <div id="app"></div>
16 </body>
17</html>