Files
StickExporterTX/src/index.html
2022-11-23 20:00:59 +01:00

19 lines
476 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>StickExporterTX</title>
</head>
<body>
<div id="root"></div>
<script>
if(process.env.NODE_ENV === 'development') {
const port = process.env.PORT || 3000;
document.write('<script src="http://localhost:'+port+'/renderer.js"><\/script>');
} else {
document.write('<script src="./.webpack/renderer.js"><\/script>');
}
</script>
</body>
</html>