insomnia/app/electron.html

18 lines
380 B
HTML
Raw Normal View History

2016-03-22 18:20:05 +00:00
<!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');
2016-04-07 01:11:16 +00:00
script.src = (process.env.HOT) ? 'http://localhost:3333/dist/bundle.js' : '../dist/bundle.js';
2016-03-22 18:20:05 +00:00
document.write(script.outerHTML);
}());
</script>
</body>
</html>