We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bbfb5d commit 5dc3fc8Copy full SHA for 5dc3fc8
src/hukk.ts
@@ -25,7 +25,7 @@ export class Hukk {
25
26
listen(port: number, callback?: () => void) {
27
this.port = port || Hukk.DEFAULT_PORT;
28
- this.server.listen(this.port, 'localhost', () => {
+ this.server.listen(this.port, '0.0.0.0', () => {
29
this._onStart(callback);
30
});
31
}
0 commit comments