2026-02-13 10:25:14 +04:00

37 lines
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title>λ Blockchain Block Explorer</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Lightweight λ Blockchain block Explorer UI" />
<base href="__BASE_PATH__" />
<!-- 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"
}
}
</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>
</html>