insomnia/app/electron.html
2016-04-06 18:11:16 -07:00

18 lines
380 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Insomnia REST Client</title>
</head>
<body>
<div id="root"></div>
<script>
(function () {
const script = document.createElement('script');
script.src = (process.env.HOT) ? 'http://localhost:3333/dist/bundle.js' : '../dist/bundle.js';
document.write(script.outerHTML);
}());
</script>
</body>
</html>