After following the Next.js recipe, i'm getting the following error:
Error: Use env variable NODE_OPTIONS instead: NODE_OPTIONS="--inspect" next dev
After some investigation, I concluded that runtimeArgs should be changed from --inspect to "NODE_OPTIONS=--inspect"
However, vscode debugger doesn't seem to accept "NODE_OPTIONS='--inspect'" as arg. How should I write it down in launch.json correctly?
After following the Next.js recipe, i'm getting the following error:
Error: Use env variable NODE_OPTIONS instead: NODE_OPTIONS="--inspect" next devAfter some investigation, I concluded that
runtimeArgsshould be changed from--inspectto"NODE_OPTIONS=--inspect"However, vscode debugger doesn't seem to accept
"NODE_OPTIONS='--inspect'"as arg. How should I write it down inlaunch.jsoncorrectly?