Listen on localhost only (#9997)

This commit is contained in:
Amir Omidi
2020-04-15 14:06:36 -07:00
committed by GitHub
parent c649890398
commit 9d9788d16f

View File

@@ -80,7 +80,7 @@ export class SimpleWebServer {
reject(new Error('Server closed'));
});
this.server.listen(0);
this.server.listen(0, '127.0.0.1');
});
const clearPortTimeout = () => {