Skip to content

Commit

Permalink
fix(nextjs): KeepAliveTimeout arg
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed Jun 26, 2023
1 parent fc0ef35 commit f1a0519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/executors/server/server.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default async function* serveExecutor(
const args = createCliOptions({ port, hostname });

if (keepAliveTimeout && !options.dev) {
args.push('--keepAliveTimeout', `${keepAliveTimeout}`);
args.push(`--keepAliveTimeout=${keepAliveTimeout}`);
}

const nextDir = resolve(context.root, buildOptions.outputPath);
Expand Down

0 comments on commit f1a0519

Please sign in to comment.