hyper/app/index.html
Andy de8e70f935 Make builds work again and catch squirrel errors on windows (#2078)
* Catch errors for electron-squirrel-startup

* Made builds work again

* linting

* linting
2017-08-13 07:03:35 +02:00

37 lines
744 B
HTML

<!doctype html>
<html>
<head>
<title>Hyper</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<style>
body {
color: #fff;
-webkit-backface-visibility: hidden;
}
* {
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
box-sizing: border-box;
}
@media (min-resolution: 2dppx) {
* {
text-rendering: geometricPrecision;
}
}
</style>
</head>
<body>
<div id="mount"></div>
<script>start = performance.now();</script>
<script src="renderer/bundle.js"></script>
<script>console.log('total init time', performance.now() - start);</script>
</body>
</html>