Skip to content

Commit

Permalink
fix ds hanging on port 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccar committed Nov 9, 2023
1 parent 81c18ec commit 38898d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const port = process.env.TEST_PORT ?? 3010;
app.use(express.static('./src/static/favicons'));
app.use(express.static('./build'));

app.listen(port, '0.0.0.0', () => {
app.listen(port, () => {
console.log(`Development server listening at http://0.0.0.0:${port}`);
});
})();

0 comments on commit 38898d2

Please sign in to comment.