Fixed server side bug logo issue

This commit is contained in:
eetnaviation
2024-03-27 17:14:22 +02:00
parent 6f32e6e198
commit 6d76b7c44a
2 changed files with 5 additions and 2 deletions

View File

@ -27,6 +27,9 @@ app.get('/', (req, res) => {
//index.html
res.sendFile(__dirname + '/client/index.html');
});
app.get('/velendeulogo.png', (req, res) => {
res.sendFile(__dirname + '/client/velendeulogo.png');
});
server.listen(serverPort, () => {
console.log("Apache server initalized...");