Skip to content

Commit

Permalink
try no retries in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
feedthejim committed Dec 24, 2024
1 parent 7a47ed5 commit f928526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/server/load-components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ async function loadComponentsImpl<N = any>({
// that can occur while app and pages are compiling at the same time, and the
// build-manifest is still being written to disk while an app path is
// attempting to load.
const manifestLoadAttempts = isDev ? 3 : 1
const manifestLoadAttempts = isDev ? 3 : 0

let reactLoadableManifestPath
if (!process.env.TURBOPACK) {
Expand Down

0 comments on commit f928526

Please sign in to comment.