Skip to content

Commit 3662682

Browse files
committed
fix path
1 parent 62a71db commit 3662682

File tree

1 file changed

+1
-1
lines changed
  • packages/@apphosting/adapter-nextjs/src

1 file changed

+1
-1
lines changed

packages/@apphosting/adapter-nextjs/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export async function loadMiddlewareManifest(
4949
standalonePath: string,
5050
distDir: string,
5151
): Promise<MiddlewareManifest> {
52-
const manifestPath = join(standalonePath, distDir, MIDDLEWARE_MANIFEST);
52+
const manifestPath = join(standalonePath, distDir, `server/${MIDDLEWARE_MANIFEST}`);
5353
const json = readFileSync(manifestPath, "utf-8");
5454
return JSON.parse(json) as MiddlewareManifest;
5555
}

0 commit comments

Comments
 (0)