Skip to content

Commit adf7a30

Browse files
committed
fix(debugging): do not pass NODE_OPTIONS='--inspect' to subprocesses
fixes vercel#11030
1 parent 756b365 commit adf7a30

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/next/server/next-dev-server.ts

+10
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,16 @@ export default class DevServer extends Server {
8585
{
8686
maxRetries: 0,
8787
numWorkers: this.nextConfig.experimental.cpus,
88+
forkOptions: {
89+
env: {
90+
...process.env,
91+
// discard process.env.NODE_OPTIONS --inspect flag otherwise two debuggers are started in inspect
92+
// mode when users will try to debug their Next.js application with NODE_OPTIONS='--inspect' next dev
93+
NODE_OPTIONS: process.env.NODE_OPTIONS
94+
? process.env.NODE_OPTIONS.replace('--inspect', '')
95+
: '',
96+
},
97+
},
8898
}
8999
) as Worker & {
90100
loadStaticPaths: typeof import('./static-paths-worker').loadStaticPaths

0 commit comments

Comments
 (0)