1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-26 05:36:37 +00:00
Files
frontend/src/html/_script_loader.html.template
Petar Petrov af049274d9 Cleanup unused WDS deps and config (#23155)
* Cleanup unused WDS deps and config

* fix
2024-12-06 09:57:46 +01:00

18 lines
360 B
Plaintext

<script crossorigin="use-credentials">
if (isModern) {
<% for (const entry of latestEntryJS) { %>
import("<%= entry %>");
<% } %>
window.latestJS = true;
}
</script>
<script>
(function() {
if (!window.latestJS) {
<% for (const entry of es5EntryJS) { %>
_ls("<%= entry %>", true);
<% } %>
}
})();
</script>