Skip to content

Commit

Permalink
fix(nextjs): runCLI stdio
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed Mar 11, 2024
1 parent 4850bdb commit 5fdc7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/executors/build/build.impl.ts
Original file line number Diff line number Diff line change
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 5fdc7b6

Please sign in to comment.