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 f0fe657 commit affb26dCopy full SHA for affb26d
scripts/base.js
@@ -9,6 +9,7 @@ const isProd = process.env.NODE_ENV === 'production'
9
const isDev = process.env.NODE_ENV === 'local'
10
let inspectorProcess = null
11
let webProcess = null
12
+let autoOpenBrowser = true
13
14
/** @type {import('esbuild').BuildOptions} */
15
export const config = {
@@ -74,9 +75,10 @@ const after = async result => {
74
75
env: {
76
...process.env,
77
DANGEROUSLY_OMIT_AUTH: true,
- MCP_AUTO_OPEN_ENABLED: false,
78
+ MCP_AUTO_OPEN_ENABLED: autoOpenBrowser,
79
},
80
})
81
+ autoOpenBrowser = false
82
83
if (process.env.TRANSPORT === 'web') {
84
if (webProcess) {
0 commit comments