fixed node

This commit is contained in:
2023-06-11 23:18:31 +02:00
parent 3a0ce7601c
commit a7edd58d1f
2 changed files with 4 additions and 4 deletions

View File

@@ -77,6 +77,6 @@ app.get('/getreport', (req, res) => {
});
// Starte den Webserver
app.listen(80, () => {
console.log('Webserver läuft auf Port 80');
app.listen(3000, () => {
console.log('Webserver läuft auf Port 3000');
});