Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
chottuthejimmy committed Nov 26, 2024
1 parent cadf6e2 commit 84a3c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/node/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export function setupServer(hooks: SetupServerHooks) {
function startListen() {
return new Promise<void>((resolve, reject) => {
server = app
.listen(port, () => {
.listen(port, '0.0.0.0', () => {
printSuccess(port);
resolve();
})
Expand Down

0 comments on commit 84a3c28

Please sign in to comment.