Skip to content

Commit

Permalink
try sth different
Browse files Browse the repository at this point in the history
  • Loading branch information
efstajas committed Dec 6, 2024
1 parent 3414aa4 commit cbaaff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const startServer = async () => {

await new Promise<void>((resolve) =>
// eslint-disable-next-line no-promise-executor-return
httpServer.listen({ host: '::', port: appSettings.port }, resolve),
httpServer.listen(appSettings.port, '::', resolve),
);

console.log(`config: ${JSON.stringify(appSettings, null, 2)}`);
Expand Down

0 comments on commit cbaaff8

Please sign in to comment.