mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-28 21:23:20 +03:00
Updated app.js to remove error when not run from backend directory
This commit is contained in:
@@ -1625,8 +1625,12 @@ app.use(function(req, res, next) {
|
|||||||
return next();
|
return next();
|
||||||
}
|
}
|
||||||
|
|
||||||
fs.createReadStream('./public/index.html').pipe(res);
|
let index_path = path.join(__dirname, 'public', 'index.html');
|
||||||
|
|
||||||
|
fs.createReadStream(index_path).pipe(res);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
app.use(express.static('./public'));
|
let public_dir = path.join(__dirname, 'public');
|
||||||
|
|
||||||
|
app.use(express.static(public_dir));
|
||||||
|
|||||||
Reference in New Issue
Block a user