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 38f31b5 commit 0296586Copy full SHA for 0296586
src/httptoolkit-server.ts
@@ -128,6 +128,10 @@ export class HttpToolkitServer {
128
}
129
130
async start() {
131
- await this.graphql.start({});
+ await this.graphql.start(<any> {
132
+ // Hacky solution that lets us limit the server to only localhost,
133
+ // and override the port from 4000 to something less likely to conflict.
134
+ port: { port: 45457, host: 'localhost' }
135
+ });
136
137
};
0 commit comments