From 20596f374bb878d4f93acf3f8afa6860507d9f98 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Tue, 16 Jul 2024 14:13:14 -0500 Subject: [PATCH] webm is a supported format --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b91fe48..529cb20 100644 --- a/index.js +++ b/index.js @@ -36,7 +36,7 @@ if (!directory) { return } -const videoFormats = ["mp4", "mkv"] +const videoFormats = ["mp4", "mkv", "webm"] app.use(express.static(directory)) app.use(express.static(pubDir))