chore: fix build & emulation

This commit is contained in:
41666 2021-08-01 16:37:33 -04:00
parent 462ef26ea2
commit 3ca37cff17
5 changed files with 13 additions and 7 deletions

View file

@ -204,5 +204,6 @@ fork(async () => {
reload();
});
console.log('starting on http://localhost:6609');
server.listen(6609, '0.0.0.0');
const port = args.port || 6609;
console.log(`starting on http://localhost:${port}`);
server.listen(port, '0.0.0.0');