feat(html): add native hls video to cdn (#1208)

This commit is contained in:
Wesley Luyten
2026-04-02 23:12:51 -05:00
committed by GitHub
parent 5239b9b834
commit 80c43d2c18
2 changed files with 2 additions and 1 deletions
@@ -0,0 +1 @@
import '../../define/media/native-hls-video';
+1 -1
View File
@@ -23,7 +23,7 @@ const presets = [
'audio-minimal-ui',
'background',
];
const media = ['hls-video', 'mux-video', 'simple-hls-video', 'dash-video'];
const media = ['hls-video', 'mux-video', 'native-hls-video', 'simple-hls-video', 'dash-video'];
const entries = [
...presets.map((name) => ({ src: `src/cdn/${name}.ts`, name })),