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 f356376 commit 07106faCopy full SHA for 07106fa
packages/react-router-dev/vite/plugin.ts
@@ -2814,8 +2814,8 @@ async function handlePrerender(
2814
concurrency = prerender.unstable_concurrency ?? 1;
2815
}
2816
2817
- const pMap = (await import("p-map")).default;
2818
- await pMap(build.prerender, prerenderSinglePath, { concurrency });
+ const pMap = await import("p-map");
+ await pMap.default(build.prerender, prerenderSinglePath, { concurrency });
2819
2820
2821
function getStaticPrerenderPaths(routes: DataRouteObject[]) {
0 commit comments