2016-06-30 22:01:04 -08:00
|
|
|
<!doctype html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2016-12-12 22:06:56 -09:00
|
|
|
<title>Hyper</title>
|
2016-09-10 15:34:20 -08:00
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="initial-scale=1.0">
|
2018-12-25 17:15:25 -09:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'">
|
2016-09-10 15:34:20 -08:00
|
|
|
|
2016-06-30 22:01:04 -08:00
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
color: #fff;
|
2017-03-05 07:34:03 -09:00
|
|
|
-webkit-backface-visibility: hidden;
|
2016-06-30 22:01:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2016-08-02 11:09:54 -08:00
|
|
|
text-rendering: optimizeLegibility;
|
2016-06-30 22:01:04 -08:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2016-08-02 11:09:54 -08:00
|
|
|
|
|
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
|
* {
|
|
|
|
|
text-rendering: geometricPrecision;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-30 22:01:04 -08:00
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<div id="mount"></div>
|
2016-09-10 15:34:20 -08:00
|
|
|
|
2016-06-30 22:01:04 -08:00
|
|
|
<script>start = performance.now();</script>
|
2017-08-12 21:03:35 -08:00
|
|
|
<script src="renderer/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>
|