mirror of
https://github.com/LinoSchmidt/StickExporterTX.git
synced 2026-03-21 01:51:15 +01:00
19 lines
476 B
HTML
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> |