diff --git a/server.js b/server.js index 43db9e0..1b01920 100644 --- a/server.js +++ b/server.js @@ -12,7 +12,7 @@ const simpleIcons = require('simple-icons'); const con = require('./constants'); let { port, hostname } = { - port: 3621 + port: 3621, hostname: 'localhost' }; @@ -103,9 +103,7 @@ module.exports = (client) => { }); }); - app.listen( - port, hostname, () => { - console.log(`Listening on ${port}`); - } - ); + app.listen(port, hostname, () => { + console.log(`Listening on ${port}`); + }); };