Skip to content

Commit dc9137b

Browse files
authored
Merge pull request #4634 from alanorth/server-setup
server.ts: remove port and host fallbacks in run
2 parents 64e9f86 + 6c09677 commit dc9137b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,8 @@ function createHttpsServer(keys) {
560560
* Create an HTTP server with the configured port and host.
561561
*/
562562
function run() {
563-
const port = environment.ui.port || 4000;
564-
const host = environment.ui.host || '/';
563+
const port = environment.ui.port;
564+
const host = environment.ui.host;
565565

566566
// Start up the Node server
567567
const server = app();

0 commit comments

Comments
 (0)