mirror of
https://github.com/home-assistant/frontend.git
synced 2026-05-14 20:20:22 +01:00
18 lines
420 B
Plaintext
18 lines
420 B
Plaintext
<script>
|
|
(function() {
|
|
if (!window.latestJS) {
|
|
<% if (useRollup) { %>
|
|
_ls("/static/js/s.min.js").onload = function() {
|
|
<% for (const entry of es5EntryJS) { %>
|
|
System.import("<%= entry %>");
|
|
<% } %>
|
|
}
|
|
<% } else { %>
|
|
<% for (const entry of es5EntryJS) { %>
|
|
_ls("<%= entry %>", true);
|
|
<% } %>
|
|
<% } %>
|
|
}
|
|
})();
|
|
</script>
|