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.
2 parents cf44b30 + de16a18 commit aa6a98aCopy full SHA for aa6a98a
client/bin/start.js
@@ -91,10 +91,10 @@ async function startProdServer(serverOptions) {
91
"node",
92
[
93
inspectorServerPath,
94
- command ? `--command=${command}` : "",
95
- mcpServerArgs && mcpServerArgs.length > 0
96
- ? `--args=${mcpServerArgs.join(" ")}`
97
- : "",
+ ...(command ? [`--command=${command}`] : []),
+ ...(mcpServerArgs && mcpServerArgs.length > 0
+ ? [`--args=${mcpServerArgs.join(" ")}`]
+ : []),
98
],
99
{
100
env: {
0 commit comments