We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd4a58 commit 6be4e13Copy full SHA for 6be4e13
packages/nextjs/test/integration/test/server/utils/helpers.ts
@@ -9,7 +9,7 @@ import next from 'next';
9
// Type not exported from NextJS
10
// @ts-ignore
11
export const createNextServer = async config => {
12
- const app = next(config);
+ const app = next({ ...config, customServer: false }); // customServer: false because: https://github.com/vercel/next.js/pull/49805#issuecomment-1557321794
13
const handle = app.getRequestHandler();
14
await app.prepare();
15
0 commit comments