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: geometricPrecision;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
</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>
|