Skip to content

Commit

Permalink
fix(nextjs): runCLI stdio (#22267)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed Mar 11, 2024
1 parent 4850bdb commit 9520aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/executors/build/build.impl.ts
Expand Up @@ -137,7 +137,7 @@ function runCliBuild(
['build', ...args],
{
cwd: pathResolve(workspaceRoot, projectRoot),
stdio: ['pipe', 'inherit', 'ipc', 'inherit'],
stdio: ['ignore', 'inherit', 'inherit', 'ipc'],
env: process.env,
}
);
Expand Down

0 comments on commit 9520aa2

Please sign in to comment.