Skip to content

Commit

Permalink
Fix id ordering in app renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkirsz committed Mar 8, 2023
1 parent 4418535 commit 4d04499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/next-core/js/src/entry/app-renderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { headersFromEntries } from "@vercel/turbopack-next/internal/headers";
import { parse, ParsedUrlQuery } from "node:querystring";

globalThis.__next_require__ = (data) => {
const [, , ssr_id] = JSON.parse(data);
const [, , , ssr_id] = JSON.parse(data);
return __turbopack_require__(ssr_id);
};
globalThis.__next_chunk_load__ = () => Promise.resolve();
Expand Down

0 comments on commit 4d04499

Please sign in to comment.