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 293c43a commit 51a8685Copy full SHA for 51a8685
packages/open-next/src/core/nodeMiddlewareHandler.ts
@@ -29,7 +29,7 @@ export default async function middlewareHandler(
29
): Promise<Response> {
30
if (!_module) {
31
// We use await import here so that we are sure that it is loaded after AsyncLocalStorage is defined on globalThis
32
- // We need both await here, same way as in
+ // We need both await here, same way as in https://github.com/opennextjs/opennextjs-aws/pull/704
33
//@ts-expect-error - This file should be bundled with esbuild
34
_module = await (await import("./.next/server/middleware.js")).default;
35
}
0 commit comments