diff --git a/src/components/ha-hls-player.ts b/src/components/ha-hls-player.ts index e20b0ce694..3943abb615 100644 --- a/src/components/ha-hls-player.ts +++ b/src/components/ha-hls-player.ts @@ -109,8 +109,7 @@ class HaHLSPlayer extends LitElement { private async _startHls(): Promise { const masterPlaylistPromise = fetch(this.url); - const Hls: typeof HlsType = (await import("hls.js/dist/hls.light.min")) - .default; + const Hls: typeof HlsType = (await import("hls.js/dist/hls.light")).default; if (!this.isConnected) { return;