diff --git a/js/app.js b/js/app.js index 2bb7a89..fa79016 100644 --- a/js/app.js +++ b/js/app.js @@ -5,7 +5,7 @@ const port = 3000; // Serve the index.html file at the root URL app.get('/', (req, res) => { - res.sendFile(path.join(__dirname, 'index.html')); + res.sendFile(path.join(__dirname, '../html/index.html')); }); app.listen(port, '0.0.0.0', () => {