index.html 996 B

1234567891011121314151617181920212223242526
  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, viewport-fit=cover"/>
  6. <link rel="apple-touch-icon" href="/pwa-192x192.png" />
  7. <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#f6d2d2">
  8. <meta name="msapplication-TileColor" content="#f6d2d2">
  9. <script>
  10. ;(function () {
  11. const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
  12. const setting = localStorage.getItem('vueuse-color-scheme') || 'auto'
  13. if (setting === 'dark' || (prefersDark && setting !== 'light'))
  14. document.documentElement.classList.toggle('dark', true)
  15. })()
  16. </script>
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script type="module" src="/src/main.ts"></script>
  21. <noscript>
  22. This website requires JavaScript to function properly.
  23. Please enable JavaScript to continue.
  24. </noscript>
  25. </body>
  26. </html>