mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
16 lines
584 B
HTML
16 lines
584 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="preconnect" href="https://rsms.me/" />
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
|
<link rel="icon" href="/just-logo.svg" type="image/svg+xml" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>GraphQL Hive</title>
|
|
<script src="/__env.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="bg-transparent font-sans text-white" id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|