Skip to content

Commit

Permalink
fix(nextjs): KeepAliveTimeout arg (#17801)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed Jun 26, 2023
1 parent 71974ca commit 47c95ae
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

1 comment on commit 47c95ae

@vercel
Copy link

@vercel vercel bot commented on 47c95ae Jun 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx.dev

Please sign in to comment.