hyper/app/index.html

34 lines
700 B
HTML
Raw Normal View History

2016-06-30 22:01:04 -08:00
<!doctype html>
<html>
<head>
<title>HyperTerm</title>
2016-07-26 11:16:57 -08:00
<meta charset="utf-8" />
2016-06-30 22:01:04 -08:00
<meta name="viewport" content="initial-scale=1.0" />
<style>
body {
color: #fff;
}
* {
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
2016-06-30 22:01:04 -08:00
box-sizing: border-box;
}
@media (min-resolution: 2dppx) {
* {
text-rendering: geometricPrecision;
}
}
2016-06-30 22:01:04 -08:00
</style>
</head>
<body>
<div id="mount"></div>
<script>start = performance.now();</script>
<script src="dist/bundle.js"></script>
2016-07-13 16:21:23 -08:00
<script>console.log('total init time', performance.now() - start);</script>
2016-06-30 22:01:04 -08:00
</body>
</html>