Started work on HLS livestreaming

This commit is contained in:
rainbow napkin 2025-05-11 08:19:30 -04:00
parent 93265b7890
commit c6de68b474
6 changed files with 193 additions and 29 deletions

View file

@ -168,9 +168,10 @@ app.use('/tooltip', tooltipRouter);
app.use('/api', apiRouter);
//Static File Server
//Serve bootstrap icons
//Serve client-side libraries
app.use('/lib/bootstrap-icons',express.static(path.join(__dirname, '../node_modules/bootstrap-icons')));
app.use('/lib/altcha',express.static(path.join(__dirname, '../node_modules/altcha/dist_external')));
app.use('/lib/hls.js',express.static(path.join(__dirname, '../node_modules/hls.js/dist')));
//Server public 'www' folder
app.use(express.static(path.join(__dirname, '../www')));