You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 470B

1234567891011121314151617
  1. <html>
  2. <head>
  3. <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
  4. <title>Minimal sauron app</title>
  5. <style type="text/css">
  6. body {
  7. font-family: "Fira Sans", "Courier New", Courier,"Lucida Sans Typewriter","Lucida Typewriter",monospace;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <script type="module">
  13. import init from './pkg/domain_hacks.js';
  14. init().catch(console.error);
  15. </script>
  16. </body>
  17. </html>