Skip to content

Commit b417d5d

Browse files
authored
Increase Next.js config bundle timeout to 60s (#6214)
* increase bundle next config timeout to 60s * changelog
1 parent 1d9daeb commit b417d5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Increase Next.js config bundle timeout to 60 seconds (#6214)

src/frameworks/next/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export const support = SupportLevel.Preview;
7676
export const type = FrameworkType.MetaFramework;
7777
export const docsUrl = "https://firebase.google.com/docs/hosting/frameworks/nextjs";
7878

79+
const BUNDLE_NEXT_CONFIG_TIMEOUT = 60_000;
7980
const DEFAULT_NUMBER_OF_REASONS_TO_LIST = 5;
8081

8182
function getReactVersion(cwd: string): string | undefined {
@@ -472,8 +473,6 @@ export async function ɵcodegenPublicDirectory(
472473
);
473474
}
474475

475-
const BUNDLE_NEXT_CONFIG_TIMEOUT = 10_000;
476-
477476
/**
478477
* Create a directory for SSR content.
479478
*/

0 commit comments

Comments
 (0)