This commit is contained in:
M1n-0
2024-06-06 00:54:56 +02:00
parent 61a496c376
commit d6bca74675
4 changed files with 7 additions and 11 deletions

1
app.js
View File

@@ -14,6 +14,7 @@ app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'index.html'));
});
// Serve the test.html file at /test URL
app.get('/test', (req, res)=> {
res.sendFile(path.join(__dirname, '/html/test.html'))
})