We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 756b365 commit adf7a30Copy full SHA for adf7a30
packages/next/server/next-dev-server.ts
@@ -85,6 +85,16 @@ export default class DevServer extends Server {
85
{
86
maxRetries: 0,
87
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
98
}
99
) as Worker & {
100
loadStaticPaths: typeof import('./static-paths-worker').loadStaticPaths
0 commit comments