mirror of
https://github.com/home-assistant/frontend.git
synced 2026-02-27 13:17:29 +00: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>
|