mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
26 lines
552 B
HTML
26 lines
552 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>HyperTerm</title>
|
|
<meta name="viewport" content="initial-scale=1.0" />
|
|
<style>
|
|
body {
|
|
color: #fff;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
text-rendering: geometricPrecision;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="mount"></div>
|
|
<script>start = performance.now();</script>
|
|
<script src="dist/bundle.js"></script>
|
|
<script>console.log('bundle init:', performance.now() - start);</script>
|
|
</body>
|
|
</html>
|