Skip to content

Commit cbed868

Browse files
authored
fix: update listener to support ipv4 and ipv6 (#298)
1 parent 9df40f2 commit cbed868

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import createApp from './app';
22
import config from './config';
33

44
createApp().then((app) => {
5-
app.listen(config.port, '0.0.0.0', () => {
5+
app.listen(config.port, '::', () => {
66
config.logger.info(`🚀 Server ready at http://0.0.0.0:${config.port}/`);
77
});
88
});

0 commit comments

Comments
 (0)