/
githubmirror
/
hyper
Обзор
Документация
Войти
/
githubmirror
/
hyper
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.3.0
app/index.html
38 строк
836 B
Juan Campa
Upgrade Electron to v4 (#3329)
26 дек 2018, 05:15
26 дек 2018, 05:15
dd68286
Код
Авторство
О чём код?
<!doctype html> <html> <head> <title>Hyper</title> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0"> <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'"> <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>