chore: made the server listening message clickable, 'cause I'm too lazy to type it out every time

This commit is contained in:
Monty 2021-10-02 23:11:31 +02:00
parent b7498fe5a8
commit b258477384
No known key found for this signature in database
GPG Key ID: 78B405B6520E1012

View File

@ -111,5 +111,5 @@ app.set('view engine', 'handlebars');
logger.info('Starting server');
app.listen(port, () => {
logger.success(`Server listening on *:${port}`);
logger.success(`Server listening on http://localhost:${port}`);
});