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 d69d67c commit 1f28b44Copy full SHA for 1f28b44
bin/cli.js
@@ -51,11 +51,11 @@ async function main() {
51
...(command ? [`--env`, command] : []),
52
...(mcpServerArgs ? ["--args", mcpServerArgs.join(" ")] : []),
53
],
54
- { env: { PORT: SERVER_PORT }, signal: abort.signal },
+ { env: { ...process.env, PORT: SERVER_PORT }, signal: abort.signal },
55
);
56
57
const client = spawnPromise("node", [inspectorClientPath], {
58
- env: { PORT: CLIENT_PORT },
+ env: { ...process.env, PORT: CLIENT_PORT },
59
signal: abort.signal,
60
});
61
0 commit comments