From ad039a70a3a9d18822b1aef839693c917363791a Mon Sep 17 00:00:00 2001 From: lnino Date: Sat, 1 Feb 2025 03:19:53 +0100 Subject: [PATCH] try something --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 5a4ce54..247d60f 100644 --- a/app.js +++ b/app.js @@ -11,7 +11,7 @@ app.use('/html', express.static(path.join(__dirname, 'html'))); // 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, 'index.js')); }); // Serve the test.html file at /test URL