Fix hass icons

This commit is contained in:
Paulus Schoutsen 2018-08-24 21:59:50 +02:00
parent 7cc3fc728b
commit 13ff59ec89
2 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,6 @@
} }
</script> </script>
<script src="<%= entrypoint %>"></script> <script src="<%= entrypoint %>"></script>
<script src='/static/hass-icons.js' async></script> <script src='<%= hassIconsJS %>' async></script>
</body> </body>
</html> </html>

View File

@ -25,6 +25,7 @@ const generateJSPage = (entrypoint, latestBuild) => {
tag: `ha-${entrypoint}`, tag: `ha-${entrypoint}`,
compatibility: assets.chunks.compatibility.entry, compatibility: assets.chunks.compatibility.entry,
entrypoint: assets.chunks[entrypoint].entry, entrypoint: assets.chunks[entrypoint].entry,
hassIconsJS: assets.chunks['hass-icons'].entry,
}), }),
filename: `${entrypoint}.html`, filename: `${entrypoint}.html`,
}); });