hyper/app/index.html
2016-07-26 12:16:57 -07:00

27 lines
584 B
HTML

<!doctype html>
<html>
<head>
<title>HyperTerm</title>
<meta charset="utf-8" />
<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('total init time', performance.now() - start);</script>
</body>
</html>