hyper/app/index.html

28 lines
578 B
HTML
Raw Normal View History

2016-06-30 22:01:04 -08:00
<!doctype html>
<html>
<head>
<title>HyperTerm</title>
<meta name="viewport" content="initial-scale=1.0" />
<style>
body {
background: #000;
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>
2016-06-30 22:08:12 -08:00
<script>console.log('bundle init:', performance.now() - start);</script>
2016-06-30 22:01:04 -08:00
</body>
</html>