36 lines
1.3 KiB
HTML
Raw Normal View History

2025-10-03 22:27:30 +02:00
<!doctype html>
<html lang="en">
2025-10-17 14:46:44 +02:00
<head>
<title>Nomos Block Explorer</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Lightweight Nomos block Explorer UI" />
<!-- Styles -->
<link rel="stylesheet" href="/static/styles.css" />
<!-- Speed up first connection to ESM CDN -->
<link rel="dns-prefetch" href="https://esm.sh" />
<link rel="preconnect" href="https://esm.sh" crossorigin />
<!-- Import map must appear BEFORE any modulepreload that relies on it -->
<script type="importmap">
{
"imports": {
"preact": "https://esm.sh/preact@10.22.0",
"preact/hooks": "https://esm.sh/preact@10.22.0/hooks"
}
2025-10-15 20:53:52 +02:00
}
2025-10-17 14:46:44 +02:00
</script>
<!-- Safe to preload after the import map -->
<link rel="modulepreload" href="/static/app.js" />
<link rel="modulepreload" href="https://esm.sh/preact@10.22.0" crossorigin />
<link rel="modulepreload" href="https://esm.sh/preact@10.22.0/hooks" crossorigin />
</head>
<body>
<div id="app"></div>
<script type="module" src="/static/app.js"></script>
</body>
2025-10-03 22:27:30 +02:00
</html>